@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-completion",
3
3
  "version": "1.0.0",
4
- "description": "Completion flow atom for agent text generation. Composes UI atoms (stdModal for prompt input, stdNotification for feedback) with an agent trait that handles agent/generate and retry logic.",
4
+ "description": "std-agent-completion as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "AgentCompletionOrbital",
8
8
  "entity": {
9
9
  "name": "AgentCompletion",
10
- "persistence": "persistent",
11
10
  "collection": "agentcompletions",
11
+ "persistence": "persistent",
12
12
  "fields": [
13
13
  {
14
14
  "name": "id",
@@ -76,16 +76,84 @@
76
76
  "traits": [
77
77
  {
78
78
  "name": "AgentCompletionModal",
79
- "linkedEntity": "AgentCompletion",
80
79
  "category": "interaction",
80
+ "linkedEntity": "AgentCompletion",
81
81
  "emits": [
82
82
  {
83
- "event": "SAVE",
84
- "scope": "external"
83
+ "event": "GENERATED",
84
+ "scope": "external",
85
+ "payload": [
86
+ {
87
+ "name": "id",
88
+ "type": "string"
89
+ }
90
+ ]
85
91
  },
86
92
  {
87
- "event": "GENERATED",
88
- "scope": "external"
93
+ "event": "AgentCompletionLoaded",
94
+ "description": "Fired when AgentCompletion finishes loading",
95
+ "scope": "internal",
96
+ "payload": [
97
+ {
98
+ "name": "id",
99
+ "type": "string"
100
+ },
101
+ {
102
+ "name": "name",
103
+ "type": "string"
104
+ },
105
+ {
106
+ "name": "description",
107
+ "type": "string"
108
+ },
109
+ {
110
+ "name": "status",
111
+ "type": "string"
112
+ },
113
+ {
114
+ "name": "createdAt",
115
+ "type": "string"
116
+ },
117
+ {
118
+ "name": "prompt",
119
+ "type": "string"
120
+ },
121
+ {
122
+ "name": "response",
123
+ "type": "string"
124
+ },
125
+ {
126
+ "name": "provider",
127
+ "type": "string"
128
+ },
129
+ {
130
+ "name": "model",
131
+ "type": "string"
132
+ },
133
+ {
134
+ "name": "error",
135
+ "type": "string"
136
+ },
137
+ {
138
+ "name": "message",
139
+ "type": "string"
140
+ },
141
+ {
142
+ "name": "notificationType",
143
+ "type": "string"
144
+ }
145
+ ]
146
+ },
147
+ {
148
+ "event": "AgentCompletionLoadFailed",
149
+ "description": "Fired when AgentCompletion fails to load",
150
+ "scope": "internal",
151
+ "payload": [
152
+ {
153
+ "name": "message",
154
+ "type": "string"
155
+ }
156
+ ]
89
157
  }
90
158
  ],
91
159
  "stateMachine": {
@@ -105,7 +173,7 @@
105
173
  },
106
174
  {
107
175
  "key": "GENERATE",
108
- "name": "Open"
176
+ "name": "Generate"
109
177
  },
110
178
  {
111
179
  "key": "CLOSE",
@@ -121,6 +189,24 @@
121
189
  "required": true
122
190
  }
123
191
  ]
192
+ },
193
+ {
194
+ "key": "GENERATED",
195
+ "name": "Generated"
196
+ },
197
+ {
198
+ "key": "AgentCompletionLoaded",
199
+ "name": "AgentCompletion loaded"
200
+ },
201
+ {
202
+ "key": "AgentCompletionLoadFailed",
203
+ "name": "AgentCompletion load failed",
204
+ "payload": [
205
+ {
206
+ "name": "message",
207
+ "type": "string"
208
+ }
209
+ ]
124
210
  }
125
211
  ],
126
212
  "transitions": [
@@ -137,18 +223,16 @@
137
223
  "render-ui",
138
224
  "main",
139
225
  {
140
- "type": "stack",
141
226
  "direction": "vertical",
227
+ "type": "stack",
142
228
  "gap": "lg",
143
229
  "children": [
144
230
  {
145
- "type": "stack",
146
231
  "direction": "horizontal",
232
+ "type": "stack",
147
233
  "gap": "md",
148
- "justify": "space-between",
149
234
  "children": [
150
235
  {
151
- "type": "stack",
152
236
  "direction": "horizontal",
153
237
  "gap": "md",
154
238
  "children": [
@@ -162,24 +246,26 @@
162
246
  "content": "AgentCompletion",
163
247
  "variant": "h2"
164
248
  }
165
- ]
249
+ ],
250
+ "type": "stack"
166
251
  },
167
252
  {
168
- "type": "button",
169
253
  "label": "Open",
170
254
  "event": "GENERATE",
171
- "variant": "primary",
172
- "icon": "sparkles"
255
+ "type": "button",
256
+ "icon": "sparkles",
257
+ "variant": "primary"
173
258
  }
174
- ]
259
+ ],
260
+ "justify": "space-between"
175
261
  },
176
262
  {
177
263
  "type": "divider"
178
264
  },
179
265
  {
180
- "type": "empty-state",
181
266
  "icon": "sparkles",
182
267
  "title": "Nothing open",
268
+ "type": "empty-state",
183
269
  "description": "Click Open to view details in a modal overlay."
184
270
  }
185
271
  ]
@@ -196,8 +282,8 @@
196
282
  "render-ui",
197
283
  "modal",
198
284
  {
199
- "type": "stack",
200
285
  "direction": "vertical",
286
+ "type": "stack",
201
287
  "gap": "md",
202
288
  "children": [
203
289
  {
@@ -206,14 +292,14 @@
206
292
  "gap": "sm",
207
293
  "children": [
208
294
  {
209
- "type": "icon",
295
+ "size": "md",
210
296
  "name": "sparkles",
211
- "size": "md"
297
+ "type": "icon"
212
298
  },
213
299
  {
214
- "type": "typography",
215
300
  "content": "AgentCompletion",
216
- "variant": "h3"
301
+ "variant": "h3",
302
+ "type": "typography"
217
303
  }
218
304
  ]
219
305
  },
@@ -221,7 +307,6 @@
221
307
  "type": "divider"
222
308
  },
223
309
  {
224
- "type": "stack",
225
310
  "direction": "horizontal",
226
311
  "gap": "sm",
227
312
  "children": [
@@ -230,20 +315,21 @@
230
315
  "label": "@entity.provider"
231
316
  },
232
317
  {
233
- "type": "badge",
234
- "label": "@entity.model"
318
+ "label": "@entity.model",
319
+ "type": "badge"
235
320
  }
236
- ]
321
+ ],
322
+ "type": "stack"
237
323
  },
238
324
  {
325
+ "cancelEvent": "CLOSE",
239
326
  "type": "form-section",
240
327
  "entity": "AgentCompletion",
241
- "mode": "create",
242
- "submitEvent": "SAVE",
243
- "cancelEvent": "CLOSE",
244
328
  "fields": [
245
329
  "prompt"
246
- ]
330
+ ],
331
+ "mode": "create",
332
+ "submitEvent": "SAVE"
247
333
  }
248
334
  ]
249
335
  }
@@ -273,41 +359,41 @@
273
359
  "render-ui",
274
360
  "main",
275
361
  {
362
+ "gap": "lg",
276
363
  "type": "stack",
277
364
  "direction": "vertical",
278
- "gap": "lg",
279
365
  "children": [
280
366
  {
281
- "type": "stack",
282
- "direction": "horizontal",
283
367
  "gap": "md",
284
368
  "justify": "space-between",
285
369
  "children": [
286
370
  {
287
- "type": "stack",
288
- "direction": "horizontal",
289
371
  "gap": "md",
372
+ "type": "stack",
290
373
  "children": [
291
374
  {
292
- "type": "icon",
293
375
  "name": "sparkles",
376
+ "type": "icon",
294
377
  "size": "lg"
295
378
  },
296
379
  {
297
380
  "type": "typography",
298
- "content": "AgentCompletion",
299
- "variant": "h2"
381
+ "variant": "h2",
382
+ "content": "AgentCompletion"
300
383
  }
301
- ]
384
+ ],
385
+ "direction": "horizontal"
302
386
  },
303
387
  {
388
+ "event": "GENERATE",
304
389
  "type": "button",
305
390
  "label": "Open",
306
- "event": "GENERATE",
307
- "variant": "primary",
308
- "icon": "sparkles"
391
+ "icon": "sparkles",
392
+ "variant": "primary"
309
393
  }
310
- ]
394
+ ],
395
+ "direction": "horizontal",
396
+ "type": "stack"
311
397
  },
312
398
  {
313
399
  "type": "divider"
@@ -351,63 +437,132 @@
351
437
  "render-ui",
352
438
  "main",
353
439
  {
354
- "type": "stack",
355
440
  "direction": "vertical",
356
- "gap": "lg",
357
441
  "children": [
358
442
  {
359
- "type": "stack",
360
443
  "direction": "horizontal",
361
- "gap": "md",
362
- "justify": "space-between",
363
444
  "children": [
364
445
  {
365
- "type": "stack",
366
446
  "direction": "horizontal",
367
447
  "gap": "md",
368
448
  "children": [
369
449
  {
370
- "type": "icon",
371
450
  "name": "sparkles",
372
- "size": "lg"
451
+ "size": "lg",
452
+ "type": "icon"
373
453
  },
374
454
  {
455
+ "variant": "h2",
375
456
  "type": "typography",
376
- "content": "AgentCompletion",
377
- "variant": "h2"
457
+ "content": "AgentCompletion"
378
458
  }
379
- ]
459
+ ],
460
+ "type": "stack"
380
461
  },
381
462
  {
382
- "type": "button",
383
- "label": "Open",
384
- "event": "GENERATE",
385
463
  "variant": "primary",
386
- "icon": "sparkles"
464
+ "event": "GENERATE",
465
+ "icon": "sparkles",
466
+ "type": "button",
467
+ "label": "Open"
387
468
  }
388
- ]
469
+ ],
470
+ "gap": "md",
471
+ "justify": "space-between",
472
+ "type": "stack"
389
473
  },
390
474
  {
391
475
  "type": "divider"
392
476
  },
393
477
  {
394
- "type": "empty-state",
395
- "icon": "sparkles",
396
478
  "title": "Nothing open",
397
- "description": "Click Open to view details in a modal overlay."
479
+ "description": "Click Open to view details in a modal overlay.",
480
+ "type": "empty-state",
481
+ "icon": "sparkles"
398
482
  }
399
- ]
483
+ ],
484
+ "type": "stack",
485
+ "gap": "lg"
400
486
  }
401
487
  ]
402
488
  ]
403
489
  }
404
490
  ]
405
- }
491
+ },
492
+ "scope": "instance"
406
493
  },
407
494
  {
408
495
  "name": "AgentCompletionNotification",
409
- "linkedEntity": "AgentCompletion",
410
496
  "category": "interaction",
497
+ "linkedEntity": "AgentCompletion",
498
+ "emits": [
499
+ {
500
+ "event": "AgentCompletionLoaded",
501
+ "description": "Fired when AgentCompletion finishes loading",
502
+ "scope": "internal",
503
+ "payload": [
504
+ {
505
+ "name": "id",
506
+ "type": "string"
507
+ },
508
+ {
509
+ "name": "name",
510
+ "type": "string"
511
+ },
512
+ {
513
+ "name": "description",
514
+ "type": "string"
515
+ },
516
+ {
517
+ "name": "status",
518
+ "type": "string"
519
+ },
520
+ {
521
+ "name": "createdAt",
522
+ "type": "string"
523
+ },
524
+ {
525
+ "name": "prompt",
526
+ "type": "string"
527
+ },
528
+ {
529
+ "name": "response",
530
+ "type": "string"
531
+ },
532
+ {
533
+ "name": "provider",
534
+ "type": "string"
535
+ },
536
+ {
537
+ "name": "model",
538
+ "type": "string"
539
+ },
540
+ {
541
+ "name": "error",
542
+ "type": "string"
543
+ },
544
+ {
545
+ "name": "message",
546
+ "type": "string"
547
+ },
548
+ {
549
+ "name": "notificationType",
550
+ "type": "string"
551
+ }
552
+ ]
553
+ },
554
+ {
555
+ "event": "AgentCompletionLoadFailed",
556
+ "description": "Fired when AgentCompletion fails to load",
557
+ "scope": "internal",
558
+ "payload": [
559
+ {
560
+ "name": "message",
561
+ "type": "string"
562
+ }
563
+ ]
564
+ }
565
+ ],
411
566
  "stateMachine": {
412
567
  "states": [
413
568
  {
@@ -425,7 +580,7 @@
425
580
  },
426
581
  {
427
582
  "key": "SHOW",
428
- "name": "Show Notification",
583
+ "name": "Show",
429
584
  "payload": [
430
585
  {
431
586
  "name": "message",
@@ -440,7 +595,21 @@
440
595
  },
441
596
  {
442
597
  "key": "HIDE",
443
- "name": "Hide Notification"
598
+ "name": "Hide"
599
+ },
600
+ {
601
+ "key": "AgentCompletionLoaded",
602
+ "name": "AgentCompletion loaded"
603
+ },
604
+ {
605
+ "key": "AgentCompletionLoadFailed",
606
+ "name": "AgentCompletion load failed",
607
+ "payload": [
608
+ {
609
+ "name": "message",
610
+ "type": "string"
611
+ }
612
+ ]
444
613
  }
445
614
  ],
446
615
  "transitions": [
@@ -451,7 +620,13 @@
451
620
  "effects": [
452
621
  [
453
622
  "fetch",
454
- "AgentCompletion"
623
+ "AgentCompletion",
624
+ {
625
+ "emit": {
626
+ "failure": "AgentCompletionLoadFailed",
627
+ "success": "AgentCompletionLoaded"
628
+ }
629
+ }
455
630
  ]
456
631
  ]
457
632
  },
@@ -474,40 +649,40 @@
474
649
  "render-ui",
475
650
  "main",
476
651
  {
652
+ "gap": "lg",
477
653
  "type": "stack",
478
654
  "direction": "vertical",
479
- "gap": "lg",
480
655
  "children": [
481
656
  {
482
- "type": "stack",
483
657
  "direction": "horizontal",
484
658
  "gap": "md",
485
- "justify": "space-between",
486
659
  "align": "center",
660
+ "type": "stack",
661
+ "justify": "space-between",
487
662
  "children": [
488
663
  {
489
- "type": "stack",
490
- "direction": "horizontal",
491
- "gap": "md",
492
- "align": "center",
493
664
  "children": [
494
665
  {
495
666
  "type": "icon",
496
- "name": "sparkles",
497
- "size": "lg"
667
+ "size": "lg",
668
+ "name": "sparkles"
498
669
  },
499
670
  {
500
- "type": "typography",
501
671
  "content": "AgentCompletion Status",
502
- "variant": "h2"
672
+ "variant": "h2",
673
+ "type": "typography"
503
674
  }
504
- ]
675
+ ],
676
+ "gap": "md",
677
+ "direction": "horizontal",
678
+ "align": "center",
679
+ "type": "stack"
505
680
  },
506
681
  {
507
- "type": "button",
508
682
  "label": "Dismiss",
509
- "event": "HIDE",
510
683
  "variant": "ghost",
684
+ "type": "button",
685
+ "event": "HIDE",
511
686
  "icon": "x"
512
687
  }
513
688
  ]
@@ -516,7 +691,6 @@
516
691
  "type": "divider"
517
692
  },
518
693
  {
519
- "type": "alert",
520
694
  "variant": [
521
695
  "object/get",
522
696
  [
@@ -532,15 +706,14 @@
532
706
  "@entity"
533
707
  ],
534
708
  "message"
535
- ]
709
+ ],
710
+ "type": "alert"
536
711
  },
537
712
  {
538
- "type": "toast-slot",
539
- "position": "top-right"
713
+ "position": "top-right",
714
+ "type": "toast-slot"
540
715
  },
541
716
  {
542
- "type": "violation-alert",
543
- "severity": "warning",
544
717
  "message": [
545
718
  "object/get",
546
719
  [
@@ -549,7 +722,9 @@
549
722
  ],
550
723
  "message"
551
724
  ],
552
- "category": "compliance"
725
+ "type": "violation-alert",
726
+ "category": "compliance",
727
+ "severity": "warning"
553
728
  }
554
729
  ]
555
730
  }
@@ -577,41 +752,40 @@
577
752
  {
578
753
  "type": "stack",
579
754
  "direction": "vertical",
580
- "gap": "lg",
581
755
  "children": [
582
756
  {
757
+ "gap": "md",
583
758
  "type": "stack",
584
759
  "direction": "horizontal",
585
- "gap": "md",
586
- "justify": "space-between",
587
760
  "align": "center",
588
761
  "children": [
589
762
  {
590
- "type": "stack",
591
763
  "direction": "horizontal",
592
- "gap": "md",
593
764
  "align": "center",
765
+ "type": "stack",
594
766
  "children": [
595
767
  {
596
768
  "type": "icon",
597
- "name": "sparkles",
598
- "size": "lg"
769
+ "size": "lg",
770
+ "name": "sparkles"
599
771
  },
600
772
  {
773
+ "variant": "h2",
601
774
  "type": "typography",
602
- "content": "AgentCompletion Status",
603
- "variant": "h2"
775
+ "content": "AgentCompletion Status"
604
776
  }
605
- ]
777
+ ],
778
+ "gap": "md"
606
779
  },
607
780
  {
608
781
  "type": "button",
609
- "label": "Dismiss",
610
- "event": "HIDE",
782
+ "icon": "x",
611
783
  "variant": "ghost",
612
- "icon": "x"
784
+ "event": "HIDE",
785
+ "label": "Dismiss"
613
786
  }
614
- ]
787
+ ],
788
+ "justify": "space-between"
615
789
  },
616
790
  {
617
791
  "type": "divider"
@@ -640,7 +814,6 @@
640
814
  "position": "top-right"
641
815
  },
642
816
  {
643
- "type": "violation-alert",
644
817
  "severity": "warning",
645
818
  "message": [
646
819
  "object/get",
@@ -650,9 +823,11 @@
650
823
  ],
651
824
  "message"
652
825
  ],
826
+ "type": "violation-alert",
653
827
  "category": "compliance"
654
828
  }
655
- ]
829
+ ],
830
+ "gap": "lg"
656
831
  }
657
832
  ]
658
833
  ]
@@ -670,12 +845,13 @@
670
845
  ]
671
846
  }
672
847
  ]
673
- }
848
+ },
849
+ "scope": "instance"
674
850
  },
675
851
  {
676
852
  "name": "AgentCompletionAgent",
677
- "linkedEntity": "AgentCompletion",
678
853
  "category": "interaction",
854
+ "linkedEntity": "AgentCompletion",
679
855
  "emits": [
680
856
  {
681
857
  "event": "SHOW",
@@ -686,13 +862,82 @@
686
862
  "type": "string"
687
863
  }
688
864
  ]
865
+ },
866
+ {
867
+ "event": "AgentCompletionLoaded",
868
+ "description": "Fired when AgentCompletion finishes loading",
869
+ "scope": "internal",
870
+ "payload": [
871
+ {
872
+ "name": "id",
873
+ "type": "string"
874
+ },
875
+ {
876
+ "name": "name",
877
+ "type": "string"
878
+ },
879
+ {
880
+ "name": "description",
881
+ "type": "string"
882
+ },
883
+ {
884
+ "name": "status",
885
+ "type": "string"
886
+ },
887
+ {
888
+ "name": "createdAt",
889
+ "type": "string"
890
+ },
891
+ {
892
+ "name": "prompt",
893
+ "type": "string"
894
+ },
895
+ {
896
+ "name": "response",
897
+ "type": "string"
898
+ },
899
+ {
900
+ "name": "provider",
901
+ "type": "string"
902
+ },
903
+ {
904
+ "name": "model",
905
+ "type": "string"
906
+ },
907
+ {
908
+ "name": "error",
909
+ "type": "string"
910
+ },
911
+ {
912
+ "name": "message",
913
+ "type": "string"
914
+ },
915
+ {
916
+ "name": "notificationType",
917
+ "type": "string"
918
+ }
919
+ ]
920
+ },
921
+ {
922
+ "event": "AgentCompletionLoadFailed",
923
+ "description": "Fired when AgentCompletion fails to load",
924
+ "scope": "internal",
925
+ "payload": [
926
+ {
927
+ "name": "message",
928
+ "type": "string"
929
+ }
930
+ ]
689
931
  }
690
932
  ],
691
933
  "listens": [
692
934
  {
693
935
  "event": "GENERATED",
694
936
  "triggers": "GENERATED",
695
- "scope": "external"
937
+ "source": {
938
+ "kind": "trait",
939
+ "trait": "AgentCompletionModal"
940
+ }
696
941
  }
697
942
  ],
698
943
  "stateMachine": {
@@ -728,21 +973,32 @@
728
973
  ]
729
974
  },
730
975
  {
731
- "key": "RETRY",
732
- "name": "Retry"
976
+ "key": "GENERATED",
977
+ "name": "Generated"
733
978
  },
734
979
  {
735
980
  "key": "RESET",
736
981
  "name": "Reset"
737
982
  },
738
983
  {
739
- "key": "GENERATED",
740
- "name": "Generated",
984
+ "key": "RETRY",
985
+ "name": "Retry"
986
+ },
987
+ {
988
+ "key": "SHOW",
989
+ "name": "Show"
990
+ },
991
+ {
992
+ "key": "AgentCompletionLoaded",
993
+ "name": "AgentCompletion loaded"
994
+ },
995
+ {
996
+ "key": "AgentCompletionLoadFailed",
997
+ "name": "AgentCompletion load failed",
741
998
  "payload": [
742
999
  {
743
- "name": "data",
744
- "type": "object",
745
- "required": true
1000
+ "name": "message",
1001
+ "type": "string"
746
1002
  }
747
1003
  ]
748
1004
  }
@@ -755,16 +1011,22 @@
755
1011
  "effects": [
756
1012
  [
757
1013
  "fetch",
758
- "AgentCompletion"
1014
+ "AgentCompletion",
1015
+ {
1016
+ "emit": {
1017
+ "success": "AgentCompletionLoaded",
1018
+ "failure": "AgentCompletionLoadFailed"
1019
+ }
1020
+ }
759
1021
  ],
760
1022
  [
761
1023
  "render-ui",
762
1024
  "main",
763
1025
  {
1026
+ "description": "Completion is ready",
764
1027
  "type": "empty-state",
765
1028
  "icon": "sparkles",
766
- "title": "Completion",
767
- "description": "Completion is ready"
1029
+ "title": "Completion"
768
1030
  }
769
1031
  ]
770
1032
  ]
@@ -845,50 +1107,50 @@
845
1107
  ]
846
1108
  },
847
1109
  {
848
- "from": "error",
849
- "to": "generating",
850
- "event": "RETRY",
851
- "guard": [
852
- "=",
853
- "@entity.status",
854
- "error"
855
- ],
1110
+ "from": "completed",
1111
+ "to": "idle",
1112
+ "event": "RESET",
856
1113
  "effects": [
857
1114
  [
858
1115
  "set",
859
1116
  "@entity.status",
860
- "generating"
1117
+ "idle"
861
1118
  ],
862
1119
  [
863
1120
  "set",
864
- "@entity.error",
1121
+ "@entity.response",
865
1122
  ""
866
1123
  ],
867
1124
  [
868
- "agent/generate",
869
- "@entity.prompt"
1125
+ "set",
1126
+ "@entity.prompt",
1127
+ ""
870
1128
  ]
871
1129
  ]
872
1130
  },
873
1131
  {
874
- "from": "completed",
875
- "to": "idle",
876
- "event": "RESET",
1132
+ "from": "error",
1133
+ "to": "generating",
1134
+ "event": "RETRY",
1135
+ "guard": [
1136
+ "=",
1137
+ "@entity.status",
1138
+ "error"
1139
+ ],
877
1140
  "effects": [
878
1141
  [
879
1142
  "set",
880
1143
  "@entity.status",
881
- "idle"
1144
+ "generating"
882
1145
  ],
883
1146
  [
884
1147
  "set",
885
- "@entity.response",
1148
+ "@entity.error",
886
1149
  ""
887
1150
  ],
888
1151
  [
889
- "set",
890
- "@entity.prompt",
891
- ""
1152
+ "agent/generate",
1153
+ "@entity.prompt"
892
1154
  ]
893
1155
  ]
894
1156
  },
@@ -910,7 +1172,8 @@
910
1172
  ]
911
1173
  }
912
1174
  ]
913
- }
1175
+ },
1176
+ "scope": "instance"
914
1177
  }
915
1178
  ],
916
1179
  "pages": [
@@ -932,4 +1195,4 @@
932
1195
  ]
933
1196
  }
934
1197
  ]
935
- }
1198
+ }