@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-chat-thread",
3
3
  "version": "1.0.0",
4
- "description": "Chat message thread atom for agent conversations. Displays a chronological list of messages (user, assistant, tool) with compose/send flow. Emits configurable send event for orchestrating traits to handle the actual agent call.",
4
+ "description": "std-agent-chat-thread as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "AgentChatThreadOrbital",
8
8
  "entity": {
9
9
  "name": "AgentChatThread",
10
- "persistence": "persistent",
11
10
  "collection": "agentchatthreads",
11
+ "persistence": "persistent",
12
12
  "fields": [
13
13
  {
14
14
  "name": "id",
@@ -61,8 +61,8 @@
61
61
  "traits": [
62
62
  {
63
63
  "name": "AgentChatThreadThread",
64
- "linkedEntity": "AgentChatThread",
65
64
  "category": "interaction",
65
+ "linkedEntity": "AgentChatThread",
66
66
  "emits": [
67
67
  {
68
68
  "event": "SEND_MESSAGE",
@@ -73,6 +73,60 @@
73
73
  "type": "string"
74
74
  }
75
75
  ]
76
+ },
77
+ {
78
+ "event": "AgentChatThreadLoaded",
79
+ "description": "Fired when AgentChatThread finishes loading",
80
+ "scope": "internal",
81
+ "payload": [
82
+ {
83
+ "name": "id",
84
+ "type": "string"
85
+ },
86
+ {
87
+ "name": "name",
88
+ "type": "string"
89
+ },
90
+ {
91
+ "name": "description",
92
+ "type": "string"
93
+ },
94
+ {
95
+ "name": "status",
96
+ "type": "string"
97
+ },
98
+ {
99
+ "name": "createdAt",
100
+ "type": "string"
101
+ },
102
+ {
103
+ "name": "role",
104
+ "type": "string"
105
+ },
106
+ {
107
+ "name": "content",
108
+ "type": "string"
109
+ },
110
+ {
111
+ "name": "timestamp",
112
+ "type": "string"
113
+ },
114
+ {
115
+ "name": "toolName",
116
+ "type": "string"
117
+ }
118
+ ]
119
+ },
120
+ {
121
+ "event": "AgentChatThreadLoadFailed",
122
+ "description": "Fired when AgentChatThread fails to load",
123
+ "scope": "internal",
124
+ "payload": [
125
+ {
126
+ "name": "message",
127
+ "type": "string"
128
+ }
129
+ ]
76
130
  }
77
131
  ],
78
132
  "stateMachine": {
@@ -92,11 +146,15 @@
92
146
  },
93
147
  {
94
148
  "key": "COMPOSE",
95
- "name": "Compose Message"
149
+ "name": "Compose"
150
+ },
151
+ {
152
+ "key": "CLEAR",
153
+ "name": "Clear"
96
154
  },
97
155
  {
98
156
  "key": "SEND",
99
- "name": "Send Message",
157
+ "name": "Send",
100
158
  "payload": [
101
159
  {
102
160
  "name": "content",
@@ -106,8 +164,22 @@
106
164
  ]
107
165
  },
108
166
  {
109
- "key": "CLEAR",
110
- "name": "Clear Thread"
167
+ "key": "SEND_MESSAGE",
168
+ "name": "Send Message"
169
+ },
170
+ {
171
+ "key": "AgentChatThreadLoaded",
172
+ "name": "AgentChatThread loaded"
173
+ },
174
+ {
175
+ "key": "AgentChatThreadLoadFailed",
176
+ "name": "AgentChatThread load failed",
177
+ "payload": [
178
+ {
179
+ "name": "message",
180
+ "type": "string"
181
+ }
182
+ ]
111
183
  }
112
184
  ],
113
185
  "transitions": [
@@ -118,58 +190,61 @@
118
190
  "effects": [
119
191
  [
120
192
  "fetch",
121
- "AgentChatThread"
193
+ "AgentChatThread",
194
+ {
195
+ "emit": {
196
+ "failure": "AgentChatThreadLoadFailed",
197
+ "success": "AgentChatThreadLoaded"
198
+ }
199
+ }
122
200
  ],
123
201
  [
124
202
  "render-ui",
125
203
  "main",
126
204
  {
127
- "type": "stack",
128
205
  "direction": "vertical",
129
- "gap": "lg",
130
206
  "children": [
131
207
  {
132
- "type": "stack",
133
- "direction": "horizontal",
134
- "gap": "sm",
135
- "justify": "space-between",
136
- "align": "center",
137
208
  "children": [
138
209
  {
139
- "type": "stack",
140
210
  "direction": "horizontal",
141
211
  "gap": "sm",
142
212
  "align": "center",
143
213
  "children": [
144
214
  {
215
+ "size": "lg",
145
216
  "type": "icon",
146
- "name": "message-circle",
147
- "size": "lg"
217
+ "name": "message-circle"
148
218
  },
149
219
  {
150
- "type": "typography",
151
220
  "content": "AgentChatThread Thread",
152
- "variant": "h2"
221
+ "variant": "h2",
222
+ "type": "typography"
153
223
  }
154
- ]
224
+ ],
225
+ "type": "stack"
155
226
  },
156
227
  {
157
- "type": "button",
158
228
  "label": "New Message",
159
- "event": "COMPOSE",
229
+ "icon": "plus",
230
+ "type": "button",
160
231
  "variant": "primary",
161
- "icon": "plus"
232
+ "event": "COMPOSE"
162
233
  }
163
- ]
234
+ ],
235
+ "type": "stack",
236
+ "gap": "sm",
237
+ "direction": "horizontal",
238
+ "justify": "space-between",
239
+ "align": "center"
164
240
  },
165
241
  {
166
242
  "type": "divider"
167
243
  },
168
244
  {
169
- "type": "data-list",
170
245
  "entity": "AgentChatThread",
171
- "emptyIcon": "message-circle",
172
246
  "emptyTitle": "No messages yet",
247
+ "emptyIcon": "message-circle",
173
248
  "emptyDescription": "Start a conversation by sending a message.",
174
249
  "renderItem": [
175
250
  "fn",
@@ -181,37 +256,40 @@
181
256
  "children": [
182
257
  {
183
258
  "type": "stack",
184
- "direction": "horizontal",
185
- "gap": "sm",
186
- "align": "center",
187
259
  "children": [
188
260
  {
189
- "type": "badge",
190
- "label": "@item.role"
261
+ "label": "@item.role",
262
+ "type": "badge"
191
263
  },
192
264
  {
193
- "type": "badge",
194
265
  "label": "@item.status",
195
- "variant": "outline"
266
+ "variant": "outline",
267
+ "type": "badge"
196
268
  },
197
269
  {
198
- "type": "typography",
199
270
  "variant": "caption",
200
271
  "color": "muted",
272
+ "type": "typography",
201
273
  "content": "@item.timestamp"
202
274
  }
203
- ]
275
+ ],
276
+ "gap": "sm",
277
+ "direction": "horizontal",
278
+ "align": "center"
204
279
  },
205
280
  {
206
- "type": "typography",
281
+ "content": "@item.content",
207
282
  "variant": "body",
208
- "content": "@item.content"
283
+ "type": "typography"
209
284
  }
210
285
  ]
211
286
  }
212
- ]
287
+ ],
288
+ "type": "data-list"
213
289
  }
214
- ]
290
+ ],
291
+ "gap": "lg",
292
+ "type": "stack"
215
293
  }
216
294
  ]
217
295
  ]
@@ -225,16 +303,8 @@
225
303
  "render-ui",
226
304
  "main",
227
305
  {
228
- "type": "stack",
229
- "direction": "vertical",
230
- "gap": "lg",
231
306
  "children": [
232
307
  {
233
- "type": "stack",
234
- "direction": "horizontal",
235
- "gap": "sm",
236
- "justify": "space-between",
237
- "align": "center",
238
308
  "children": [
239
309
  {
240
310
  "type": "stack",
@@ -243,9 +313,9 @@
243
313
  "align": "center",
244
314
  "children": [
245
315
  {
316
+ "size": "lg",
246
317
  "type": "icon",
247
- "name": "message-circle",
248
- "size": "lg"
318
+ "name": "message-circle"
249
319
  },
250
320
  {
251
321
  "type": "typography",
@@ -255,187 +325,170 @@
255
325
  ]
256
326
  },
257
327
  {
258
- "type": "button",
259
328
  "label": "New Message",
260
329
  "event": "COMPOSE",
261
330
  "variant": "primary",
262
331
  "icon": "plus",
332
+ "type": "button",
263
333
  "disabled": true
264
334
  }
265
- ]
335
+ ],
336
+ "justify": "space-between",
337
+ "direction": "horizontal",
338
+ "type": "stack",
339
+ "gap": "sm",
340
+ "align": "center"
266
341
  },
267
342
  {
268
343
  "type": "divider"
269
344
  },
270
345
  {
271
- "type": "data-list",
272
346
  "entity": "AgentChatThread",
273
- "emptyIcon": "message-circle",
274
- "emptyTitle": "No messages yet",
275
347
  "emptyDescription": "Start a conversation by sending a message.",
276
348
  "renderItem": [
277
349
  "fn",
278
350
  "item",
279
351
  {
280
- "type": "stack",
281
352
  "direction": "vertical",
282
353
  "gap": "xs",
354
+ "type": "stack",
283
355
  "children": [
284
356
  {
285
- "type": "stack",
357
+ "align": "center",
286
358
  "direction": "horizontal",
359
+ "type": "stack",
287
360
  "gap": "sm",
288
- "align": "center",
289
361
  "children": [
290
362
  {
291
- "type": "badge",
292
- "label": "@item.role"
363
+ "label": "@item.role",
364
+ "type": "badge"
293
365
  },
294
366
  {
295
- "type": "badge",
296
367
  "label": "@item.status",
297
- "variant": "outline"
368
+ "variant": "outline",
369
+ "type": "badge"
298
370
  },
299
371
  {
300
- "type": "typography",
301
- "variant": "caption",
372
+ "content": "@item.timestamp",
302
373
  "color": "muted",
303
- "content": "@item.timestamp"
374
+ "type": "typography",
375
+ "variant": "caption"
304
376
  }
305
377
  ]
306
378
  },
307
379
  {
308
380
  "type": "typography",
309
- "variant": "body",
310
- "content": "@item.content"
381
+ "content": "@item.content",
382
+ "variant": "body"
311
383
  }
312
384
  ]
313
385
  }
314
- ]
386
+ ],
387
+ "emptyIcon": "message-circle",
388
+ "type": "data-list",
389
+ "emptyTitle": "No messages yet"
315
390
  },
316
391
  {
317
- "type": "form-section",
318
392
  "title": "Compose Message",
393
+ "type": "form-section",
319
394
  "children": [
320
395
  {
321
- "type": "textarea",
322
396
  "label": "Message",
397
+ "placeholder": "Type your message...",
323
398
  "bind": "@entity.content",
324
- "placeholder": "Type your message..."
399
+ "type": "textarea"
325
400
  },
326
401
  {
327
- "type": "stack",
328
- "direction": "horizontal",
329
- "gap": "sm",
330
402
  "children": [
331
403
  {
332
- "type": "button",
333
- "label": "Send",
334
- "event": "SEND",
335
404
  "variant": "primary",
336
- "icon": "send"
405
+ "event": "SEND",
406
+ "icon": "send",
407
+ "type": "button",
408
+ "label": "Send"
337
409
  }
338
- ]
410
+ ],
411
+ "direction": "horizontal",
412
+ "gap": "sm",
413
+ "type": "stack"
339
414
  }
340
415
  ]
341
416
  }
342
- ]
417
+ ],
418
+ "type": "stack",
419
+ "gap": "lg",
420
+ "direction": "vertical"
343
421
  }
344
422
  ]
345
423
  ]
346
424
  },
347
425
  {
348
- "from": "composing",
426
+ "from": "idle",
349
427
  "to": "idle",
350
- "event": "SEND",
428
+ "event": "CLEAR",
351
429
  "effects": [
352
430
  [
353
- "set",
354
- "@entity.content",
355
- "@payload.content"
356
- ],
357
- [
358
- "set",
359
- "@entity.role",
360
- "user"
361
- ],
362
- [
363
- "set",
364
- "@entity.timestamp",
365
- "@now"
366
- ],
367
- [
368
- "set",
369
- "@entity.status",
370
- "sent"
431
+ "persist",
432
+ "delete",
433
+ "AgentChatThread"
371
434
  ],
372
435
  [
373
- "persist",
374
- "create",
436
+ "fetch",
375
437
  "AgentChatThread",
376
438
  {
377
- "role": "user",
378
- "content": "@payload.content",
379
- "timestamp": "@now",
380
- "status": "sent"
439
+ "emit": {
440
+ "success": "AgentChatThreadLoaded",
441
+ "failure": "AgentChatThreadLoadFailed"
442
+ }
381
443
  }
382
444
  ],
383
- [
384
- "emit",
385
- "SEND_MESSAGE"
386
- ],
387
- [
388
- "fetch",
389
- "AgentChatThread"
390
- ],
391
445
  [
392
446
  "render-ui",
393
447
  "main",
394
448
  {
395
- "type": "stack",
396
- "direction": "vertical",
397
449
  "gap": "lg",
450
+ "direction": "vertical",
398
451
  "children": [
399
452
  {
400
- "type": "stack",
401
- "direction": "horizontal",
402
- "gap": "sm",
403
- "justify": "space-between",
404
453
  "align": "center",
454
+ "gap": "sm",
405
455
  "children": [
406
456
  {
407
457
  "type": "stack",
408
- "direction": "horizontal",
409
- "gap": "sm",
410
458
  "align": "center",
411
459
  "children": [
412
460
  {
413
461
  "type": "icon",
414
- "name": "message-circle",
415
- "size": "lg"
462
+ "size": "lg",
463
+ "name": "message-circle"
416
464
  },
417
465
  {
418
- "type": "typography",
419
466
  "content": "AgentChatThread Thread",
467
+ "type": "typography",
420
468
  "variant": "h2"
421
469
  }
422
- ]
470
+ ],
471
+ "direction": "horizontal",
472
+ "gap": "sm"
423
473
  },
424
474
  {
425
- "type": "button",
426
- "label": "New Message",
427
475
  "event": "COMPOSE",
476
+ "type": "button",
477
+ "icon": "plus",
428
478
  "variant": "primary",
429
- "icon": "plus"
479
+ "label": "New Message"
430
480
  }
431
- ]
481
+ ],
482
+ "direction": "horizontal",
483
+ "justify": "space-between",
484
+ "type": "stack"
432
485
  },
433
486
  {
434
487
  "type": "divider"
435
488
  },
436
489
  {
437
- "type": "data-list",
438
490
  "entity": "AgentChatThread",
491
+ "type": "data-list",
439
492
  "emptyIcon": "message-circle",
440
493
  "emptyTitle": "No messages yet",
441
494
  "emptyDescription": "Start a conversation by sending a message.",
@@ -444,8 +497,6 @@
444
497
  "item",
445
498
  {
446
499
  "type": "stack",
447
- "direction": "vertical",
448
- "gap": "xs",
449
500
  "children": [
450
501
  {
451
502
  "type": "stack",
@@ -464,8 +515,8 @@
464
515
  },
465
516
  {
466
517
  "type": "typography",
467
- "variant": "caption",
468
518
  "color": "muted",
519
+ "variant": "caption",
469
520
  "content": "@item.timestamp"
470
521
  }
471
522
  ]
@@ -475,53 +526,87 @@
475
526
  "variant": "body",
476
527
  "content": "@item.content"
477
528
  }
478
- ]
529
+ ],
530
+ "direction": "vertical",
531
+ "gap": "xs"
479
532
  }
480
533
  ]
481
534
  }
482
- ]
535
+ ],
536
+ "type": "stack"
483
537
  }
484
538
  ]
485
539
  ]
486
540
  },
487
541
  {
488
- "from": "idle",
542
+ "from": "composing",
489
543
  "to": "idle",
490
- "event": "CLEAR",
544
+ "event": "SEND",
491
545
  "effects": [
546
+ [
547
+ "set",
548
+ "@entity.content",
549
+ "@payload.content"
550
+ ],
551
+ [
552
+ "set",
553
+ "@entity.role",
554
+ "user"
555
+ ],
556
+ [
557
+ "set",
558
+ "@entity.timestamp",
559
+ "@now"
560
+ ],
561
+ [
562
+ "set",
563
+ "@entity.status",
564
+ "sent"
565
+ ],
492
566
  [
493
567
  "persist",
494
- "delete",
495
- "AgentChatThread"
568
+ "create",
569
+ "AgentChatThread",
570
+ {
571
+ "timestamp": "@now",
572
+ "content": "@payload.content",
573
+ "status": "sent",
574
+ "role": "user"
575
+ }
576
+ ],
577
+ [
578
+ "emit",
579
+ "SEND_MESSAGE"
496
580
  ],
497
581
  [
498
582
  "fetch",
499
- "AgentChatThread"
583
+ "AgentChatThread",
584
+ {
585
+ "emit": {
586
+ "success": "AgentChatThreadLoaded",
587
+ "failure": "AgentChatThreadLoadFailed"
588
+ }
589
+ }
500
590
  ],
501
591
  [
502
592
  "render-ui",
503
593
  "main",
504
594
  {
505
- "type": "stack",
506
595
  "direction": "vertical",
596
+ "type": "stack",
507
597
  "gap": "lg",
508
598
  "children": [
509
599
  {
510
- "type": "stack",
511
600
  "direction": "horizontal",
512
- "gap": "sm",
513
- "justify": "space-between",
601
+ "type": "stack",
514
602
  "align": "center",
515
603
  "children": [
516
604
  {
517
- "type": "stack",
518
605
  "direction": "horizontal",
519
- "gap": "sm",
520
- "align": "center",
521
606
  "children": [
522
607
  {
523
- "type": "icon",
524
608
  "name": "message-circle",
609
+ "type": "icon",
525
610
  "size": "lg"
526
611
  },
527
612
  {
@@ -529,7 +614,10 @@
529
614
  "content": "AgentChatThread Thread",
530
615
  "variant": "h2"
531
616
  }
532
- ]
617
+ ],
618
+ "type": "stack",
619
+ "gap": "sm",
620
+ "align": "center"
533
621
  },
534
622
  {
535
623
  "type": "button",
@@ -538,56 +626,58 @@
538
626
  "variant": "primary",
539
627
  "icon": "plus"
540
628
  }
541
- ]
629
+ ],
630
+ "justify": "space-between",
631
+ "gap": "sm"
542
632
  },
543
633
  {
544
634
  "type": "divider"
545
635
  },
546
636
  {
547
- "type": "data-list",
548
- "entity": "AgentChatThread",
549
- "emptyIcon": "message-circle",
550
- "emptyTitle": "No messages yet",
551
637
  "emptyDescription": "Start a conversation by sending a message.",
552
638
  "renderItem": [
553
639
  "fn",
554
640
  "item",
555
641
  {
556
- "type": "stack",
557
642
  "direction": "vertical",
643
+ "type": "stack",
558
644
  "gap": "xs",
559
645
  "children": [
560
646
  {
561
- "type": "stack",
562
- "direction": "horizontal",
563
647
  "gap": "sm",
564
- "align": "center",
565
648
  "children": [
566
649
  {
567
- "type": "badge",
568
- "label": "@item.role"
650
+ "label": "@item.role",
651
+ "type": "badge"
569
652
  },
570
653
  {
571
654
  "type": "badge",
572
- "label": "@item.status",
573
- "variant": "outline"
655
+ "variant": "outline",
656
+ "label": "@item.status"
574
657
  },
575
658
  {
659
+ "color": "muted",
576
660
  "type": "typography",
577
661
  "variant": "caption",
578
- "color": "muted",
579
662
  "content": "@item.timestamp"
580
663
  }
581
- ]
664
+ ],
665
+ "type": "stack",
666
+ "direction": "horizontal",
667
+ "align": "center"
582
668
  },
583
669
  {
584
670
  "type": "typography",
585
- "variant": "body",
586
- "content": "@item.content"
671
+ "content": "@item.content",
672
+ "variant": "body"
587
673
  }
588
674
  ]
589
675
  }
590
- ]
676
+ ],
677
+ "type": "data-list",
678
+ "entity": "AgentChatThread",
679
+ "emptyTitle": "No messages yet",
680
+ "emptyIcon": "message-circle"
591
681
  }
592
682
  ]
593
683
  }
@@ -606,7 +696,13 @@
606
696
  ],
607
697
  [
608
698
  "fetch",
609
- "AgentChatThread"
699
+ "AgentChatThread",
700
+ {
701
+ "emit": {
702
+ "success": "AgentChatThreadLoaded",
703
+ "failure": "AgentChatThreadLoadFailed"
704
+ }
705
+ }
610
706
  ],
611
707
  [
612
708
  "render-ui",
@@ -617,36 +713,36 @@
617
713
  "gap": "lg",
618
714
  "children": [
619
715
  {
620
- "type": "stack",
621
716
  "direction": "horizontal",
622
- "gap": "sm",
623
717
  "justify": "space-between",
624
718
  "align": "center",
719
+ "gap": "sm",
720
+ "type": "stack",
625
721
  "children": [
626
722
  {
627
- "type": "stack",
628
- "direction": "horizontal",
629
- "gap": "sm",
630
- "align": "center",
631
723
  "children": [
632
724
  {
633
- "type": "icon",
725
+ "size": "lg",
634
726
  "name": "message-circle",
635
- "size": "lg"
727
+ "type": "icon"
636
728
  },
637
729
  {
638
730
  "type": "typography",
639
731
  "content": "AgentChatThread Thread",
640
732
  "variant": "h2"
641
733
  }
642
- ]
734
+ ],
735
+ "type": "stack",
736
+ "gap": "sm",
737
+ "align": "center",
738
+ "direction": "horizontal"
643
739
  },
644
740
  {
645
741
  "type": "button",
646
- "label": "New Message",
742
+ "icon": "plus",
647
743
  "event": "COMPOSE",
648
- "variant": "primary",
649
- "icon": "plus"
744
+ "label": "New Message",
745
+ "variant": "primary"
650
746
  }
651
747
  ]
652
748
  },
@@ -654,39 +750,36 @@
654
750
  "type": "divider"
655
751
  },
656
752
  {
657
- "type": "data-list",
658
753
  "entity": "AgentChatThread",
659
- "emptyIcon": "message-circle",
660
- "emptyTitle": "No messages yet",
661
754
  "emptyDescription": "Start a conversation by sending a message.",
755
+ "emptyTitle": "No messages yet",
756
+ "type": "data-list",
757
+ "emptyIcon": "message-circle",
662
758
  "renderItem": [
663
759
  "fn",
664
760
  "item",
665
761
  {
666
- "type": "stack",
667
- "direction": "vertical",
668
- "gap": "xs",
669
762
  "children": [
670
763
  {
671
- "type": "stack",
672
764
  "direction": "horizontal",
673
- "gap": "sm",
674
765
  "align": "center",
766
+ "gap": "sm",
767
+ "type": "stack",
675
768
  "children": [
676
769
  {
677
- "type": "badge",
678
- "label": "@item.role"
770
+ "label": "@item.role",
771
+ "type": "badge"
679
772
  },
680
773
  {
681
- "type": "badge",
774
+ "variant": "outline",
682
775
  "label": "@item.status",
683
- "variant": "outline"
776
+ "type": "badge"
684
777
  },
685
778
  {
686
- "type": "typography",
687
- "variant": "caption",
688
779
  "color": "muted",
689
- "content": "@item.timestamp"
780
+ "content": "@item.timestamp",
781
+ "type": "typography",
782
+ "variant": "caption"
690
783
  }
691
784
  ]
692
785
  },
@@ -695,7 +788,10 @@
695
788
  "variant": "body",
696
789
  "content": "@item.content"
697
790
  }
698
- ]
791
+ ],
792
+ "type": "stack",
793
+ "direction": "vertical",
794
+ "gap": "xs"
699
795
  }
700
796
  ]
701
797
  }
@@ -705,7 +801,8 @@
705
801
  ]
706
802
  }
707
803
  ]
708
- }
804
+ },
805
+ "scope": "collection"
709
806
  }
710
807
  ],
711
808
  "pages": [
@@ -721,4 +818,4 @@
721
818
  ]
722
819
  }
723
820
  ]
724
- }
821
+ }