@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-tool-call",
3
3
  "version": "1.0.0",
4
- "description": "Tool execution atom for agent tool invocation. Composes UI atoms (stdModal for invoke form, stdAgentActivityLog for call history) with an agent trait that handles agent/invoke and TOOL_STARTED/TOOL_COMPLETED emits.",
4
+ "description": "std-agent-tool-call as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "AgentToolCallOrbital",
8
8
  "entity": {
9
9
  "name": "AgentToolCall",
10
- "persistence": "persistent",
11
10
  "collection": "agenttoolcalls",
11
+ "persistence": "persistent",
12
12
  "fields": [
13
13
  {
14
14
  "name": "id",
@@ -59,7 +59,7 @@
59
59
  {
60
60
  "name": "duration",
61
61
  "type": "number",
62
- "default": 0
62
+ "default": 0.0
63
63
  },
64
64
  {
65
65
  "name": "action",
@@ -81,16 +81,88 @@
81
81
  "traits": [
82
82
  {
83
83
  "name": "AgentToolCallModal",
84
- "linkedEntity": "AgentToolCall",
85
84
  "category": "interaction",
85
+ "linkedEntity": "AgentToolCall",
86
86
  "emits": [
87
87
  {
88
- "event": "SAVE",
89
- "scope": "external"
88
+ "event": "INVOKED",
89
+ "scope": "external",
90
+ "payload": [
91
+ {
92
+ "name": "id",
93
+ "type": "string"
94
+ }
95
+ ]
90
96
  },
91
97
  {
92
- "event": "INVOKED",
93
- "scope": "external"
98
+ "event": "AgentToolCallLoaded",
99
+ "description": "Fired when AgentToolCall finishes loading",
100
+ "scope": "internal",
101
+ "payload": [
102
+ {
103
+ "name": "id",
104
+ "type": "string"
105
+ },
106
+ {
107
+ "name": "name",
108
+ "type": "string"
109
+ },
110
+ {
111
+ "name": "description",
112
+ "type": "string"
113
+ },
114
+ {
115
+ "name": "status",
116
+ "type": "string"
117
+ },
118
+ {
119
+ "name": "createdAt",
120
+ "type": "string"
121
+ },
122
+ {
123
+ "name": "toolName",
124
+ "type": "string"
125
+ },
126
+ {
127
+ "name": "args",
128
+ "type": "string"
129
+ },
130
+ {
131
+ "name": "result",
132
+ "type": "string"
133
+ },
134
+ {
135
+ "name": "error",
136
+ "type": "string"
137
+ },
138
+ {
139
+ "name": "duration",
140
+ "type": "number"
141
+ },
142
+ {
143
+ "name": "action",
144
+ "type": "string"
145
+ },
146
+ {
147
+ "name": "detail",
148
+ "type": "string"
149
+ },
150
+ {
151
+ "name": "timestamp",
152
+ "type": "string"
153
+ }
154
+ ]
155
+ },
156
+ {
157
+ "event": "AgentToolCallLoadFailed",
158
+ "description": "Fired when AgentToolCall fails to load",
159
+ "scope": "internal",
160
+ "payload": [
161
+ {
162
+ "name": "message",
163
+ "type": "string"
164
+ }
165
+ ]
94
166
  }
95
167
  ],
96
168
  "stateMachine": {
@@ -110,7 +182,7 @@
110
182
  },
111
183
  {
112
184
  "key": "INVOKE",
113
- "name": "Open"
185
+ "name": "Invoke"
114
186
  },
115
187
  {
116
188
  "key": "CLOSE",
@@ -126,6 +198,24 @@
126
198
  "required": true
127
199
  }
128
200
  ]
201
+ },
202
+ {
203
+ "key": "INVOKED",
204
+ "name": "Invoked"
205
+ },
206
+ {
207
+ "key": "AgentToolCallLoaded",
208
+ "name": "AgentToolCall loaded"
209
+ },
210
+ {
211
+ "key": "AgentToolCallLoadFailed",
212
+ "name": "AgentToolCall load failed",
213
+ "payload": [
214
+ {
215
+ "name": "message",
216
+ "type": "string"
217
+ }
218
+ ]
129
219
  }
130
220
  ],
131
221
  "transitions": [
@@ -142,12 +232,9 @@
142
232
  "render-ui",
143
233
  "main",
144
234
  {
145
- "type": "stack",
146
- "direction": "vertical",
147
235
  "gap": "lg",
148
236
  "children": [
149
237
  {
150
- "type": "stack",
151
238
  "direction": "horizontal",
152
239
  "gap": "md",
153
240
  "justify": "space-between",
@@ -158,9 +245,9 @@
158
245
  "gap": "md",
159
246
  "children": [
160
247
  {
248
+ "size": "lg",
161
249
  "type": "icon",
162
- "name": "wrench",
163
- "size": "lg"
250
+ "name": "wrench"
164
251
  },
165
252
  {
166
253
  "type": "typography",
@@ -171,23 +258,26 @@
171
258
  },
172
259
  {
173
260
  "type": "button",
174
- "label": "Open",
175
- "event": "INVOKE",
261
+ "icon": "wrench",
176
262
  "variant": "primary",
177
- "icon": "wrench"
263
+ "label": "Open",
264
+ "event": "INVOKE"
178
265
  }
179
- ]
266
+ ],
267
+ "type": "stack"
180
268
  },
181
269
  {
182
270
  "type": "divider"
183
271
  },
184
272
  {
185
273
  "type": "empty-state",
274
+ "description": "Click Open to view details in a modal overlay.",
186
275
  "icon": "wrench",
187
- "title": "Nothing open",
188
- "description": "Click Open to view details in a modal overlay."
276
+ "title": "Nothing open"
189
277
  }
190
- ]
278
+ ],
279
+ "direction": "vertical",
280
+ "type": "stack"
191
281
  }
192
282
  ]
193
283
  ]
@@ -201,14 +291,10 @@
201
291
  "render-ui",
202
292
  "modal",
203
293
  {
204
- "type": "stack",
205
- "direction": "vertical",
206
294
  "gap": "md",
207
295
  "children": [
208
296
  {
209
- "type": "stack",
210
297
  "direction": "horizontal",
211
- "gap": "sm",
212
298
  "children": [
213
299
  {
214
300
  "type": "icon",
@@ -216,27 +302,31 @@
216
302
  "size": "md"
217
303
  },
218
304
  {
219
- "type": "typography",
220
305
  "content": "Invoke Tool",
306
+ "type": "typography",
221
307
  "variant": "h3"
222
308
  }
223
- ]
309
+ ],
310
+ "type": "stack",
311
+ "gap": "sm"
224
312
  },
225
313
  {
226
314
  "type": "divider"
227
315
  },
228
316
  {
229
- "type": "form-section",
230
- "entity": "AgentToolCall",
231
- "mode": "create",
232
- "submitEvent": "SAVE",
233
317
  "cancelEvent": "CLOSE",
234
318
  "fields": [
235
319
  "toolName",
236
320
  "args"
237
- ]
321
+ ],
322
+ "entity": "AgentToolCall",
323
+ "type": "form-section",
324
+ "mode": "create",
325
+ "submitEvent": "SAVE"
238
326
  }
239
- ]
327
+ ],
328
+ "type": "stack",
329
+ "direction": "vertical"
240
330
  }
241
331
  ]
242
332
  ]
@@ -264,50 +354,50 @@
264
354
  "render-ui",
265
355
  "main",
266
356
  {
267
- "type": "stack",
268
357
  "direction": "vertical",
269
358
  "gap": "lg",
359
+ "type": "stack",
270
360
  "children": [
271
361
  {
272
- "type": "stack",
273
- "direction": "horizontal",
274
- "gap": "md",
275
- "justify": "space-between",
276
362
  "children": [
277
363
  {
278
- "type": "stack",
279
364
  "direction": "horizontal",
365
+ "type": "stack",
280
366
  "gap": "md",
281
367
  "children": [
282
368
  {
283
- "type": "icon",
369
+ "size": "lg",
284
370
  "name": "wrench",
285
- "size": "lg"
371
+ "type": "icon"
286
372
  },
287
373
  {
374
+ "variant": "h2",
288
375
  "type": "typography",
289
- "content": "Invoke Tool",
290
- "variant": "h2"
376
+ "content": "Invoke Tool"
291
377
  }
292
378
  ]
293
379
  },
294
380
  {
295
- "type": "button",
296
381
  "label": "Open",
297
382
  "event": "INVOKE",
383
+ "icon": "wrench",
298
384
  "variant": "primary",
299
- "icon": "wrench"
385
+ "type": "button"
300
386
  }
301
- ]
387
+ ],
388
+ "justify": "space-between",
389
+ "type": "stack",
390
+ "direction": "horizontal",
391
+ "gap": "md"
302
392
  },
303
393
  {
304
394
  "type": "divider"
305
395
  },
306
396
  {
307
- "type": "empty-state",
308
- "icon": "wrench",
397
+ "description": "Click Open to view details in a modal overlay.",
309
398
  "title": "Nothing open",
310
- "description": "Click Open to view details in a modal overlay."
399
+ "type": "empty-state",
400
+ "icon": "wrench"
311
401
  }
312
402
  ]
313
403
  }
@@ -343,62 +433,63 @@
343
433
  "main",
344
434
  {
345
435
  "type": "stack",
346
- "direction": "vertical",
347
- "gap": "lg",
348
436
  "children": [
349
437
  {
350
438
  "type": "stack",
351
- "direction": "horizontal",
352
- "gap": "md",
353
- "justify": "space-between",
354
439
  "children": [
355
440
  {
356
- "type": "stack",
357
- "direction": "horizontal",
358
441
  "gap": "md",
359
442
  "children": [
360
443
  {
361
- "type": "icon",
444
+ "size": "lg",
362
445
  "name": "wrench",
363
- "size": "lg"
446
+ "type": "icon"
364
447
  },
365
448
  {
366
449
  "type": "typography",
367
450
  "content": "Invoke Tool",
368
451
  "variant": "h2"
369
452
  }
370
- ]
453
+ ],
454
+ "type": "stack",
455
+ "direction": "horizontal"
371
456
  },
372
457
  {
458
+ "variant": "primary",
373
459
  "type": "button",
460
+ "icon": "wrench",
374
461
  "label": "Open",
375
- "event": "INVOKE",
376
- "variant": "primary",
377
- "icon": "wrench"
462
+ "event": "INVOKE"
378
463
  }
379
- ]
464
+ ],
465
+ "gap": "md",
466
+ "justify": "space-between",
467
+ "direction": "horizontal"
380
468
  },
381
469
  {
382
470
  "type": "divider"
383
471
  },
384
472
  {
385
- "type": "empty-state",
386
- "icon": "wrench",
473
+ "description": "Click Open to view details in a modal overlay.",
387
474
  "title": "Nothing open",
388
- "description": "Click Open to view details in a modal overlay."
475
+ "type": "empty-state",
476
+ "icon": "wrench"
389
477
  }
390
- ]
478
+ ],
479
+ "gap": "lg",
480
+ "direction": "vertical"
391
481
  }
392
482
  ]
393
483
  ]
394
484
  }
395
485
  ]
396
- }
486
+ },
487
+ "scope": "instance"
397
488
  },
398
489
  {
399
490
  "name": "AgentToolCallAgent",
400
- "linkedEntity": "AgentToolCall",
401
491
  "category": "interaction",
492
+ "linkedEntity": "AgentToolCall",
402
493
  "emits": [
403
494
  {
404
495
  "event": "TOOL_STARTED",
@@ -441,13 +532,86 @@
441
532
  "type": "string"
442
533
  }
443
534
  ]
535
+ },
536
+ {
537
+ "event": "AgentToolCallLoaded",
538
+ "description": "Fired when AgentToolCall finishes loading",
539
+ "scope": "internal",
540
+ "payload": [
541
+ {
542
+ "name": "id",
543
+ "type": "string"
544
+ },
545
+ {
546
+ "name": "name",
547
+ "type": "string"
548
+ },
549
+ {
550
+ "name": "description",
551
+ "type": "string"
552
+ },
553
+ {
554
+ "name": "status",
555
+ "type": "string"
556
+ },
557
+ {
558
+ "name": "createdAt",
559
+ "type": "string"
560
+ },
561
+ {
562
+ "name": "toolName",
563
+ "type": "string"
564
+ },
565
+ {
566
+ "name": "args",
567
+ "type": "string"
568
+ },
569
+ {
570
+ "name": "result",
571
+ "type": "string"
572
+ },
573
+ {
574
+ "name": "error",
575
+ "type": "string"
576
+ },
577
+ {
578
+ "name": "duration",
579
+ "type": "number"
580
+ },
581
+ {
582
+ "name": "action",
583
+ "type": "string"
584
+ },
585
+ {
586
+ "name": "detail",
587
+ "type": "string"
588
+ },
589
+ {
590
+ "name": "timestamp",
591
+ "type": "string"
592
+ }
593
+ ]
594
+ },
595
+ {
596
+ "event": "AgentToolCallLoadFailed",
597
+ "description": "Fired when AgentToolCall fails to load",
598
+ "scope": "internal",
599
+ "payload": [
600
+ {
601
+ "name": "message",
602
+ "type": "string"
603
+ }
604
+ ]
444
605
  }
445
606
  ],
446
607
  "listens": [
447
608
  {
448
609
  "event": "INVOKED",
449
610
  "triggers": "INVOKED",
450
- "scope": "external"
611
+ "source": {
612
+ "kind": "trait",
613
+ "trait": "AgentToolCallModal"
614
+ }
451
615
  }
452
616
  ],
453
617
  "stateMachine": {
@@ -482,18 +646,37 @@
482
646
  }
483
647
  ]
484
648
  },
649
+ {
650
+ "key": "INVOKED",
651
+ "name": "Invoked"
652
+ },
485
653
  {
486
654
  "key": "CANCEL",
487
655
  "name": "Cancel"
488
656
  },
489
657
  {
490
- "key": "INVOKED",
491
- "name": "Invoked",
658
+ "key": "TOOL_STARTED",
659
+ "name": "Tool Started"
660
+ },
661
+ {
662
+ "key": "TOOL_COMPLETED",
663
+ "name": "Tool Completed"
664
+ },
665
+ {
666
+ "key": "LOG_ENTRY",
667
+ "name": "Log Entry"
668
+ },
669
+ {
670
+ "key": "AgentToolCallLoaded",
671
+ "name": "AgentToolCall loaded"
672
+ },
673
+ {
674
+ "key": "AgentToolCallLoadFailed",
675
+ "name": "AgentToolCall load failed",
492
676
  "payload": [
493
677
  {
494
- "name": "data",
495
- "type": "object",
496
- "required": true
678
+ "name": "message",
679
+ "type": "string"
497
680
  }
498
681
  ]
499
682
  }
@@ -506,15 +689,21 @@
506
689
  "effects": [
507
690
  [
508
691
  "fetch",
509
- "AgentToolCall"
692
+ "AgentToolCall",
693
+ {
694
+ "emit": {
695
+ "success": "AgentToolCallLoaded",
696
+ "failure": "AgentToolCallLoadFailed"
697
+ }
698
+ }
510
699
  ],
511
700
  [
512
701
  "render-ui",
513
702
  "main",
514
703
  {
515
704
  "type": "empty-state",
516
- "icon": "wrench",
517
705
  "title": "Tool Call",
706
+ "icon": "wrench",
518
707
  "description": "Tool Call is ready"
519
708
  }
520
709
  ]
@@ -581,42 +770,74 @@
581
770
  ]
582
771
  },
583
772
  {
584
- "from": "completed",
585
- "to": "executing",
773
+ "from": "executing",
774
+ "to": "completed",
586
775
  "event": "DO_INVOKE",
587
776
  "effects": [
588
777
  [
589
778
  "set",
590
- "@entity.toolName",
591
- "@payload.data.toolName"
779
+ "@entity.status",
780
+ "completed"
592
781
  ],
593
782
  [
594
783
  "set",
595
- "@entity.args",
596
- "@payload.data.args"
784
+ "@entity.result",
785
+ "@payload.data.result"
786
+ ],
787
+ [
788
+ "emit",
789
+ "TOOL_COMPLETED"
597
790
  ],
791
+ [
792
+ "emit",
793
+ "LOG_ENTRY"
794
+ ]
795
+ ]
796
+ },
797
+ {
798
+ "from": "executing",
799
+ "to": "failed",
800
+ "event": "CANCEL",
801
+ "guard": [
802
+ "=",
803
+ "@entity.status",
804
+ "executing"
805
+ ],
806
+ "effects": [
598
807
  [
599
808
  "set",
600
809
  "@entity.status",
601
- "executing"
810
+ "failed"
602
811
  ],
603
812
  [
604
- "emit",
605
- "TOOL_STARTED"
813
+ "set",
814
+ "@entity.error",
815
+ "Cancelled"
606
816
  ],
607
817
  [
608
818
  "emit",
609
- "LOG_ENTRY"
819
+ "TOOL_COMPLETED"
820
+ ]
821
+ ]
822
+ },
823
+ {
824
+ "from": "executing",
825
+ "to": "idle",
826
+ "event": "CANCEL",
827
+ "effects": [
828
+ [
829
+ "set",
830
+ "@entity.status",
831
+ "idle"
610
832
  ],
611
833
  [
612
- "agent/invoke",
613
- "@payload.data.toolName",
614
- "@payload.data.args"
834
+ "emit",
835
+ "TOOL_COMPLETED"
615
836
  ]
616
837
  ]
617
838
  },
618
839
  {
619
- "from": "failed",
840
+ "from": "completed",
620
841
  "to": "executing",
621
842
  "event": "DO_INVOKE",
622
843
  "effects": [
@@ -651,74 +872,43 @@
651
872
  ]
652
873
  },
653
874
  {
654
- "from": "executing",
655
- "to": "completed",
875
+ "from": "failed",
876
+ "to": "executing",
656
877
  "event": "DO_INVOKE",
657
878
  "effects": [
658
879
  [
659
880
  "set",
660
- "@entity.status",
661
- "completed"
881
+ "@entity.toolName",
882
+ "@payload.data.toolName"
662
883
  ],
663
884
  [
664
885
  "set",
665
- "@entity.result",
666
- "@payload.data.result"
667
- ],
668
- [
669
- "emit",
670
- "TOOL_COMPLETED"
886
+ "@entity.args",
887
+ "@payload.data.args"
671
888
  ],
672
- [
673
- "emit",
674
- "LOG_ENTRY"
675
- ]
676
- ]
677
- },
678
- {
679
- "from": "executing",
680
- "to": "failed",
681
- "event": "CANCEL",
682
- "guard": [
683
- "=",
684
- "@entity.status",
685
- "executing"
686
- ],
687
- "effects": [
688
889
  [
689
890
  "set",
690
891
  "@entity.status",
691
- "failed"
892
+ "executing"
692
893
  ],
693
894
  [
694
- "set",
695
- "@entity.error",
696
- "Cancelled"
895
+ "emit",
896
+ "TOOL_STARTED"
697
897
  ],
698
898
  [
699
899
  "emit",
700
- "TOOL_COMPLETED"
701
- ]
702
- ]
703
- },
704
- {
705
- "from": "executing",
706
- "to": "idle",
707
- "event": "CANCEL",
708
- "effects": [
709
- [
710
- "set",
711
- "@entity.status",
712
- "idle"
900
+ "LOG_ENTRY"
713
901
  ],
714
902
  [
715
- "emit",
716
- "TOOL_COMPLETED"
903
+ "agent/invoke",
904
+ "@payload.data.toolName",
905
+ "@payload.data.args"
717
906
  ]
718
907
  ]
719
908
  }
720
909
  ]
721
- }
910
+ },
911
+ "scope": "instance"
722
912
  }
723
913
  ],
724
914
  "pages": [
@@ -737,4 +927,4 @@
737
927
  ]
738
928
  }
739
929
  ]
740
- }
930
+ }