@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,14 +1,14 @@
1
1
  {
2
2
  "name": "std-agent-session",
3
3
  "version": "1.0.0",
4
- "description": "Session lifecycle atom for agent session management. Composes UI atoms (stdBrowse for session list, stdModal for fork label form) with an agent trait that handles agent/fork, agent/label, and agent/session-id.",
4
+ "description": "std-agent-session as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "AgentSessionOrbital",
8
8
  "entity": {
9
9
  "name": "AgentSession",
10
- "persistence": "persistent",
11
10
  "collection": "agentsessions",
11
+ "persistence": "persistent",
12
12
  "fields": [
13
13
  {
14
14
  "name": "id",
@@ -56,23 +56,84 @@
56
56
  "traits": [
57
57
  {
58
58
  "name": "AgentSessionBrowse",
59
- "linkedEntity": "AgentSession",
60
59
  "category": "interaction",
60
+ "linkedEntity": "AgentSession",
61
+ "emits": [
62
+ {
63
+ "event": "AgentSessionLoaded",
64
+ "description": "Fired when AgentSession finishes loading",
65
+ "scope": "internal",
66
+ "payload": [
67
+ {
68
+ "name": "id",
69
+ "type": "string"
70
+ },
71
+ {
72
+ "name": "name",
73
+ "type": "string"
74
+ },
75
+ {
76
+ "name": "description",
77
+ "type": "string"
78
+ },
79
+ {
80
+ "name": "status",
81
+ "type": "string"
82
+ },
83
+ {
84
+ "name": "createdAt",
85
+ "type": "string"
86
+ },
87
+ {
88
+ "name": "sessionId",
89
+ "type": "string"
90
+ },
91
+ {
92
+ "name": "parentId",
93
+ "type": "string"
94
+ },
95
+ {
96
+ "name": "label",
97
+ "type": "string"
98
+ }
99
+ ]
100
+ },
101
+ {
102
+ "event": "AgentSessionLoadFailed",
103
+ "description": "Fired when AgentSession fails to load",
104
+ "scope": "internal",
105
+ "payload": [
106
+ {
107
+ "name": "message",
108
+ "type": "string"
109
+ }
110
+ ]
111
+ }
112
+ ],
61
113
  "listens": [
62
114
  {
63
115
  "event": "FORKED",
64
- "scope": "external",
65
- "triggers": "INIT"
116
+ "triggers": "INIT",
117
+ "source": {
118
+ "kind": "trait",
119
+ "trait": "AgentSessionAgent"
120
+ }
66
121
  },
67
122
  {
68
123
  "event": "LABELED",
69
- "scope": "external",
70
- "triggers": "INIT"
124
+ "triggers": "INIT",
125
+ "source": {
126
+ "kind": "trait",
127
+ "trait": "AgentSessionLabel"
128
+ }
71
129
  },
72
130
  {
73
131
  "event": "ENDED",
74
- "scope": "external",
75
- "triggers": "INIT"
132
+ "triggers": "INIT",
133
+ "source": {
134
+ "kind": "trait",
135
+ "trait": "AgentSessionAgent"
136
+ }
76
137
  }
77
138
  ],
78
139
  "stateMachine": {
@@ -88,20 +149,22 @@
88
149
  "name": "Initialize"
89
150
  },
90
151
  {
91
- "key": "FORK",
92
- "name": "FORK"
93
- },
94
- {
95
- "key": "LABEL",
96
- "name": "LABEL"
152
+ "key": "AgentSessionLoaded",
153
+ "name": "AgentSession loaded"
97
154
  },
98
155
  {
99
- "key": "END",
100
- "name": "END"
156
+ "key": "AgentSessionLoadFailed",
157
+ "name": "AgentSession load failed",
158
+ "payload": [
159
+ {
160
+ "name": "message",
161
+ "type": "string"
162
+ }
163
+ ]
101
164
  },
102
165
  {
103
166
  "key": "VIEW",
104
- "name": "VIEW",
167
+ "name": "View",
105
168
  "payload": [
106
169
  {
107
170
  "name": "id",
@@ -129,28 +192,23 @@
129
192
  "render-ui",
130
193
  "main",
131
194
  {
132
- "type": "stack",
133
- "direction": "vertical",
134
195
  "gap": "lg",
135
- "className": "max-w-5xl mx-auto w-full",
136
196
  "children": [
137
197
  {
198
+ "justify": "space-between",
138
199
  "type": "stack",
139
200
  "direction": "horizontal",
140
- "gap": "md",
141
- "justify": "space-between",
142
- "align": "center",
143
201
  "children": [
144
202
  {
203
+ "gap": "sm",
145
204
  "type": "stack",
146
205
  "direction": "horizontal",
147
- "gap": "sm",
148
206
  "align": "center",
149
207
  "children": [
150
208
  {
209
+ "size": "lg",
151
210
  "type": "icon",
152
- "name": "terminal",
153
- "size": "lg"
211
+ "name": "terminal"
154
212
  },
155
213
  {
156
214
  "type": "typography",
@@ -161,75 +219,65 @@
161
219
  },
162
220
  {
163
221
  "type": "stack",
164
- "direction": "horizontal",
165
222
  "gap": "sm",
223
+ "direction": "horizontal",
166
224
  "children": [
167
225
  {
226
+ "icon": "git-branch",
227
+ "variant": "secondary",
168
228
  "type": "button",
169
229
  "label": "Fork",
170
- "event": "FORK",
171
- "variant": "secondary",
172
- "icon": "git-branch"
230
+ "event": "FORK"
173
231
  },
174
232
  {
175
- "type": "button",
176
- "label": "Label",
177
233
  "event": "LABEL",
178
- "variant": "secondary",
179
- "icon": "tag"
234
+ "label": "Label",
235
+ "type": "button",
236
+ "icon": "tag",
237
+ "variant": "secondary"
180
238
  },
181
239
  {
182
- "type": "button",
183
- "label": "End",
184
240
  "event": "END",
185
241
  "variant": "ghost",
242
+ "label": "End",
243
+ "type": "button",
186
244
  "icon": "square"
187
245
  }
188
246
  ]
189
247
  }
190
- ]
248
+ ],
249
+ "align": "center",
250
+ "gap": "md"
191
251
  },
192
252
  {
193
253
  "type": "divider"
194
254
  },
195
255
  {
196
- "type": "data-grid",
197
- "entity": "AgentSession",
198
256
  "emptyIcon": "inbox",
199
- "emptyTitle": "No sessions yet",
200
- "emptyDescription": "Start a new session to begin.",
201
- "itemActions": [
202
- {
203
- "label": "View",
204
- "event": "VIEW",
205
- "variant": "ghost",
206
- "size": "sm"
207
- }
208
- ],
209
257
  "columns": [
210
258
  {
259
+ "variant": "h4",
211
260
  "name": "sessionId",
212
261
  "label": "Session ID",
213
- "variant": "h4",
214
262
  "icon": "terminal"
215
263
  },
216
264
  {
217
- "name": "status",
218
- "label": "Status",
219
265
  "variant": "badge",
266
+ "label": "Status",
267
+ "name": "status",
220
268
  "colorMap": {
221
- "active": "success",
222
- "completed": "success",
223
- "done": "success",
224
- "pending": "warning",
225
- "draft": "warning",
226
- "scheduled": "warning",
269
+ "cancelled": "destructive",
227
270
  "inactive": "neutral",
271
+ "scheduled": "warning",
272
+ "done": "success",
273
+ "completed": "success",
274
+ "failed": "destructive",
228
275
  "archived": "neutral",
276
+ "active": "success",
277
+ "pending": "warning",
229
278
  "disabled": "neutral",
230
- "error": "destructive",
231
- "cancelled": "destructive",
232
- "failed": "destructive"
279
+ "draft": "warning",
280
+ "error": "destructive"
233
281
  }
234
282
  },
235
283
  {
@@ -237,28 +285,96 @@
237
285
  "label": "Label",
238
286
  "variant": "caption"
239
287
  }
240
- ]
288
+ ],
289
+ "entity": "AgentSession",
290
+ "type": "data-grid",
291
+ "emptyDescription": "Start a new session to begin.",
292
+ "itemActions": [
293
+ {
294
+ "size": "sm",
295
+ "variant": "ghost",
296
+ "label": "View",
297
+ "event": "VIEW"
298
+ }
299
+ ],
300
+ "emptyTitle": "No sessions yet"
241
301
  }
242
- ]
302
+ ],
303
+ "className": "max-w-5xl mx-auto w-full",
304
+ "type": "stack",
305
+ "direction": "vertical"
243
306
  }
244
307
  ]
245
308
  ]
246
309
  }
247
310
  ]
248
- }
311
+ },
312
+ "scope": "collection"
249
313
  },
250
314
  {
251
315
  "name": "AgentSessionLabel",
252
- "linkedEntity": "AgentSession",
253
316
  "category": "interaction",
317
+ "linkedEntity": "AgentSession",
254
318
  "emits": [
255
319
  {
256
- "event": "SAVE",
257
- "scope": "external"
320
+ "event": "LABELED",
321
+ "scope": "external",
322
+ "payload": [
323
+ {
324
+ "name": "id",
325
+ "type": "string"
326
+ }
327
+ ]
258
328
  },
259
329
  {
260
- "event": "LABELED",
261
- "scope": "external"
330
+ "event": "AgentSessionLoaded",
331
+ "description": "Fired when AgentSession finishes loading",
332
+ "scope": "internal",
333
+ "payload": [
334
+ {
335
+ "name": "id",
336
+ "type": "string"
337
+ },
338
+ {
339
+ "name": "name",
340
+ "type": "string"
341
+ },
342
+ {
343
+ "name": "description",
344
+ "type": "string"
345
+ },
346
+ {
347
+ "name": "status",
348
+ "type": "string"
349
+ },
350
+ {
351
+ "name": "createdAt",
352
+ "type": "string"
353
+ },
354
+ {
355
+ "name": "sessionId",
356
+ "type": "string"
357
+ },
358
+ {
359
+ "name": "parentId",
360
+ "type": "string"
361
+ },
362
+ {
363
+ "name": "label",
364
+ "type": "string"
365
+ }
366
+ ]
367
+ },
368
+ {
369
+ "event": "AgentSessionLoadFailed",
370
+ "description": "Fired when AgentSession fails to load",
371
+ "scope": "internal",
372
+ "payload": [
373
+ {
374
+ "name": "message",
375
+ "type": "string"
376
+ }
377
+ ]
262
378
  }
263
379
  ],
264
380
  "stateMachine": {
@@ -278,7 +394,7 @@
278
394
  },
279
395
  {
280
396
  "key": "LABEL",
281
- "name": "Open"
397
+ "name": "Label"
282
398
  },
283
399
  {
284
400
  "key": "CLOSE",
@@ -294,6 +410,24 @@
294
410
  "required": true
295
411
  }
296
412
  ]
413
+ },
414
+ {
415
+ "key": "LABELED",
416
+ "name": "Labeled"
417
+ },
418
+ {
419
+ "key": "AgentSessionLoaded",
420
+ "name": "AgentSession loaded"
421
+ },
422
+ {
423
+ "key": "AgentSessionLoadFailed",
424
+ "name": "AgentSession load failed",
425
+ "payload": [
426
+ {
427
+ "name": "message",
428
+ "type": "string"
429
+ }
430
+ ]
297
431
  }
298
432
  ],
299
433
  "transitions": [
@@ -315,61 +449,67 @@
315
449
  "effects": [
316
450
  [
317
451
  "fetch",
318
- "AgentSession"
452
+ "AgentSession",
453
+ {
454
+ "emit": {
455
+ "success": "AgentSessionLoaded",
456
+ "failure": "AgentSessionLoadFailed"
457
+ }
458
+ }
319
459
  ],
320
460
  [
321
461
  "render-ui",
322
462
  "modal",
323
463
  {
324
- "type": "stack",
325
- "direction": "vertical",
326
464
  "gap": "md",
465
+ "direction": "vertical",
466
+ "type": "stack",
327
467
  "children": [
328
468
  {
329
- "type": "stack",
330
- "direction": "horizontal",
331
469
  "gap": "sm",
470
+ "direction": "horizontal",
332
471
  "children": [
333
472
  {
473
+ "size": "md",
334
474
  "type": "icon",
335
- "name": "tag",
336
- "size": "md"
475
+ "name": "tag"
337
476
  },
338
477
  {
339
478
  "type": "typography",
340
479
  "content": "Label Session",
341
480
  "variant": "h3"
342
481
  }
343
- ]
482
+ ],
483
+ "type": "stack"
344
484
  },
345
485
  {
346
486
  "type": "divider"
347
487
  },
348
488
  {
349
- "type": "stack",
350
- "direction": "horizontal",
351
489
  "gap": "md",
490
+ "direction": "horizontal",
491
+ "type": "stack",
352
492
  "children": [
353
493
  {
354
- "type": "typography",
355
494
  "variant": "caption",
495
+ "type": "typography",
356
496
  "content": "Session:"
357
497
  },
358
498
  {
359
- "type": "badge",
360
- "label": "@entity.sessionId"
499
+ "label": "@entity.sessionId",
500
+ "type": "badge"
361
501
  }
362
502
  ]
363
503
  },
364
504
  {
365
- "type": "form-section",
366
- "entity": "AgentSession",
367
- "mode": "edit",
368
505
  "submitEvent": "SAVE",
369
506
  "cancelEvent": "CLOSE",
507
+ "mode": "edit",
508
+ "entity": "AgentSession",
370
509
  "fields": [
371
510
  "label"
372
- ]
511
+ ],
512
+ "type": "form-section"
373
513
  }
374
514
  ]
375
515
  }
@@ -386,6 +526,13 @@
386
526
  "modal",
387
527
  null
388
528
  ],
529
+ [
530
+ "render-ui",
531
+ "main",
532
+ {
533
+ "type": "box"
534
+ }
535
+ ],
389
536
  [
390
537
  "notify",
391
538
  "Cancelled",
@@ -409,6 +556,13 @@
409
556
  "modal",
410
557
  null
411
558
  ],
559
+ [
560
+ "render-ui",
561
+ "main",
562
+ {
563
+ "type": "box"
564
+ }
565
+ ],
412
566
  [
413
567
  "emit",
414
568
  "LABELED"
@@ -416,12 +570,13 @@
416
570
  ]
417
571
  }
418
572
  ]
419
- }
573
+ },
574
+ "scope": "collection"
420
575
  },
421
576
  {
422
577
  "name": "AgentSessionAgent",
423
- "linkedEntity": "AgentSession",
424
578
  "category": "interaction",
579
+ "linkedEntity": "AgentSession",
425
580
  "emits": [
426
581
  {
427
582
  "event": "ENDED",
@@ -442,18 +597,74 @@
442
597
  "type": "string"
443
598
  }
444
599
  ]
600
+ },
601
+ {
602
+ "event": "AgentSessionLoaded",
603
+ "description": "Fired when AgentSession finishes loading",
604
+ "scope": "internal",
605
+ "payload": [
606
+ {
607
+ "name": "id",
608
+ "type": "string"
609
+ },
610
+ {
611
+ "name": "name",
612
+ "type": "string"
613
+ },
614
+ {
615
+ "name": "description",
616
+ "type": "string"
617
+ },
618
+ {
619
+ "name": "status",
620
+ "type": "string"
621
+ },
622
+ {
623
+ "name": "createdAt",
624
+ "type": "string"
625
+ },
626
+ {
627
+ "name": "sessionId",
628
+ "type": "string"
629
+ },
630
+ {
631
+ "name": "parentId",
632
+ "type": "string"
633
+ },
634
+ {
635
+ "name": "label",
636
+ "type": "string"
637
+ }
638
+ ]
639
+ },
640
+ {
641
+ "event": "AgentSessionLoadFailed",
642
+ "description": "Fired when AgentSession fails to load",
643
+ "scope": "internal",
644
+ "payload": [
645
+ {
646
+ "name": "message",
647
+ "type": "string"
648
+ }
649
+ ]
445
650
  }
446
651
  ],
447
652
  "listens": [
448
653
  {
449
654
  "event": "ENDED",
450
655
  "triggers": "INIT",
451
- "scope": "external"
656
+ "source": {
657
+ "kind": "trait",
658
+ "trait": "AgentSessionAgent"
659
+ }
452
660
  },
453
661
  {
454
662
  "event": "FORKED",
455
663
  "triggers": "INIT",
456
- "scope": "external"
664
+ "source": {
665
+ "kind": "trait",
666
+ "trait": "AgentSessionAgent"
667
+ }
457
668
  }
458
669
  ],
459
670
  "stateMachine": {
@@ -476,7 +687,7 @@
476
687
  },
477
688
  {
478
689
  "key": "FORK",
479
- "name": "Fork Session"
690
+ "name": "Fork"
480
691
  },
481
692
  {
482
693
  "key": "DO_LABEL",
@@ -489,10 +700,6 @@
489
700
  }
490
701
  ]
491
702
  },
492
- {
493
- "key": "END",
494
- "name": "End Session"
495
- },
496
703
  {
497
704
  "key": "LABELED",
498
705
  "name": "Labeled",
@@ -504,14 +711,29 @@
504
711
  }
505
712
  ]
506
713
  },
714
+ {
715
+ "key": "END",
716
+ "name": "End"
717
+ },
718
+ {
719
+ "key": "ENDED",
720
+ "name": "Ended"
721
+ },
507
722
  {
508
723
  "key": "FORKED",
509
- "name": "Forked",
724
+ "name": "Forked"
725
+ },
726
+ {
727
+ "key": "AgentSessionLoaded",
728
+ "name": "AgentSession loaded"
729
+ },
730
+ {
731
+ "key": "AgentSessionLoadFailed",
732
+ "name": "AgentSession load failed",
510
733
  "payload": [
511
734
  {
512
- "name": "data",
513
- "type": "object",
514
- "required": true
735
+ "name": "message",
736
+ "type": "string"
515
737
  }
516
738
  ]
517
739
  }
@@ -524,7 +746,13 @@
524
746
  "effects": [
525
747
  [
526
748
  "fetch",
527
- "AgentSession"
749
+ "AgentSession",
750
+ {
751
+ "emit": {
752
+ "failure": "AgentSessionLoadFailed",
753
+ "success": "AgentSessionLoaded"
754
+ }
755
+ }
528
756
  ],
529
757
  [
530
758
  "agent/session-id"
@@ -538,10 +766,10 @@
538
766
  "render-ui",
539
767
  "main",
540
768
  {
541
- "type": "empty-state",
542
769
  "icon": "git-branch",
543
770
  "title": "Session",
544
- "description": "Session is ready"
771
+ "description": "Session is ready",
772
+ "type": "empty-state"
545
773
  }
546
774
  ]
547
775
  ]
@@ -567,9 +795,9 @@
567
795
  "create",
568
796
  "AgentSession",
569
797
  {
570
- "sessionId": "@entity.sessionId",
571
- "parentId": "@entity.parentId",
572
798
  "status": "forked",
799
+ "parentId": "@entity.parentId",
800
+ "sessionId": "@entity.sessionId",
573
801
  "createdAt": "@now"
574
802
  }
575
803
  ],
@@ -579,6 +807,59 @@
579
807
  ]
580
808
  ]
581
809
  },
810
+ {
811
+ "from": "active",
812
+ "to": "active",
813
+ "event": "DO_LABEL",
814
+ "effects": [
815
+ [
816
+ "agent/label",
817
+ "@payload.data.label"
818
+ ],
819
+ [
820
+ "set",
821
+ "@entity.label",
822
+ "@payload.data.label"
823
+ ]
824
+ ]
825
+ },
826
+ {
827
+ "from": "active",
828
+ "to": "active",
829
+ "event": "LABELED",
830
+ "effects": [
831
+ [
832
+ "agent/label",
833
+ "@entity.label"
834
+ ],
835
+ [
836
+ "fetch",
837
+ "AgentSession",
838
+ {
839
+ "emit": {
840
+ "success": "AgentSessionLoaded",
841
+ "failure": "AgentSessionLoadFailed"
842
+ }
843
+ }
844
+ ]
845
+ ]
846
+ },
847
+ {
848
+ "from": "active",
849
+ "to": "ended",
850
+ "event": "END",
851
+ "effects": [
852
+ [
853
+ "set",
854
+ "@entity.status",
855
+ "ended"
856
+ ],
857
+ [
858
+ "emit",
859
+ "ENDED"
860
+ ]
861
+ ]
862
+ },
582
863
  {
583
864
  "from": "forked",
584
865
  "to": "forked",
@@ -612,22 +893,6 @@
612
893
  ]
613
894
  ]
614
895
  },
615
- {
616
- "from": "active",
617
- "to": "active",
618
- "event": "DO_LABEL",
619
- "effects": [
620
- [
621
- "agent/label",
622
- "@payload.data.label"
623
- ],
624
- [
625
- "set",
626
- "@entity.label",
627
- "@payload.data.label"
628
- ]
629
- ]
630
- },
631
896
  {
632
897
  "from": "forked",
633
898
  "to": "forked",
@@ -644,21 +909,6 @@
644
909
  ]
645
910
  ]
646
911
  },
647
- {
648
- "from": "active",
649
- "to": "active",
650
- "event": "LABELED",
651
- "effects": [
652
- [
653
- "agent/label",
654
- "@entity.label"
655
- ],
656
- [
657
- "fetch",
658
- "AgentSession"
659
- ]
660
- ]
661
- },
662
912
  {
663
913
  "from": "forked",
664
914
  "to": "forked",
@@ -670,23 +920,13 @@
670
920
  ],
671
921
  [
672
922
  "fetch",
673
- "AgentSession"
674
- ]
675
- ]
676
- },
677
- {
678
- "from": "active",
679
- "to": "ended",
680
- "event": "END",
681
- "effects": [
682
- [
683
- "set",
684
- "@entity.status",
685
- "ended"
686
- ],
687
- [
688
- "emit",
689
- "ENDED"
923
+ "AgentSession",
924
+ {
925
+ "emit": {
926
+ "success": "AgentSessionLoaded",
927
+ "failure": "AgentSessionLoadFailed"
928
+ }
929
+ }
690
930
  ]
691
931
  ]
692
932
  },
@@ -713,7 +953,13 @@
713
953
  "effects": [
714
954
  [
715
955
  "fetch",
716
- "AgentSession"
956
+ "AgentSession",
957
+ {
958
+ "emit": {
959
+ "success": "AgentSessionLoaded",
960
+ "failure": "AgentSessionLoadFailed"
961
+ }
962
+ }
717
963
  ],
718
964
  [
719
965
  "agent/session-id"
@@ -732,16 +978,17 @@
732
978
  "render-ui",
733
979
  "main",
734
980
  {
981
+ "description": "Session is ready",
735
982
  "type": "empty-state",
736
- "icon": "git-branch",
737
983
  "title": "Session",
738
- "description": "Session is ready"
984
+ "icon": "git-branch"
739
985
  }
740
986
  ]
741
987
  ]
742
988
  }
743
989
  ]
744
- }
990
+ },
991
+ "scope": "collection"
745
992
  }
746
993
  ],
747
994
  "pages": [
@@ -763,4 +1010,4 @@
763
1010
  ]
764
1011
  }
765
1012
  ]
766
- }
1013
+ }