@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-classifier",
3
3
  "version": "1.0.0",
4
- "description": "Classification flow atom for agent-powered text classification. Composes UI atoms (stdModal for input form, stdNotification for result badge) with an agent trait that uses agent/generate with a classification prompt.",
4
+ "description": "std-agent-classifier as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "AgentClassifierOrbital",
8
8
  "entity": {
9
9
  "name": "AgentClassifier",
10
- "persistence": "persistent",
11
10
  "collection": "agentclassifiers",
11
+ "persistence": "persistent",
12
12
  "fields": [
13
13
  {
14
14
  "name": "id",
@@ -49,7 +49,7 @@
49
49
  {
50
50
  "name": "confidence",
51
51
  "type": "number",
52
- "default": 0
52
+ "default": 0.0
53
53
  },
54
54
  {
55
55
  "name": "model",
@@ -71,16 +71,80 @@
71
71
  "traits": [
72
72
  {
73
73
  "name": "AgentClassifierModal",
74
- "linkedEntity": "AgentClassifier",
75
74
  "category": "interaction",
75
+ "linkedEntity": "AgentClassifier",
76
76
  "emits": [
77
77
  {
78
- "event": "SAVE",
79
- "scope": "external"
78
+ "event": "CLASSIFIED",
79
+ "scope": "external",
80
+ "payload": [
81
+ {
82
+ "name": "id",
83
+ "type": "string"
84
+ }
85
+ ]
80
86
  },
81
87
  {
82
- "event": "CLASSIFIED",
83
- "scope": "external"
88
+ "event": "AgentClassifierLoaded",
89
+ "description": "Fired when AgentClassifier finishes loading",
90
+ "scope": "internal",
91
+ "payload": [
92
+ {
93
+ "name": "id",
94
+ "type": "string"
95
+ },
96
+ {
97
+ "name": "name",
98
+ "type": "string"
99
+ },
100
+ {
101
+ "name": "description",
102
+ "type": "string"
103
+ },
104
+ {
105
+ "name": "status",
106
+ "type": "string"
107
+ },
108
+ {
109
+ "name": "createdAt",
110
+ "type": "string"
111
+ },
112
+ {
113
+ "name": "input",
114
+ "type": "string"
115
+ },
116
+ {
117
+ "name": "category",
118
+ "type": "string"
119
+ },
120
+ {
121
+ "name": "confidence",
122
+ "type": "number"
123
+ },
124
+ {
125
+ "name": "model",
126
+ "type": "string"
127
+ },
128
+ {
129
+ "name": "message",
130
+ "type": "string"
131
+ },
132
+ {
133
+ "name": "notificationType",
134
+ "type": "string"
135
+ }
136
+ ]
137
+ },
138
+ {
139
+ "event": "AgentClassifierLoadFailed",
140
+ "description": "Fired when AgentClassifier fails to load",
141
+ "scope": "internal",
142
+ "payload": [
143
+ {
144
+ "name": "message",
145
+ "type": "string"
146
+ }
147
+ ]
84
148
  }
85
149
  ],
86
150
  "stateMachine": {
@@ -100,7 +164,7 @@
100
164
  },
101
165
  {
102
166
  "key": "CLASSIFY",
103
- "name": "Open"
167
+ "name": "Classify"
104
168
  },
105
169
  {
106
170
  "key": "CLOSE",
@@ -116,6 +180,24 @@
116
180
  "required": true
117
181
  }
118
182
  ]
183
+ },
184
+ {
185
+ "key": "CLASSIFIED",
186
+ "name": "Classified"
187
+ },
188
+ {
189
+ "key": "AgentClassifierLoaded",
190
+ "name": "AgentClassifier loaded"
191
+ },
192
+ {
193
+ "key": "AgentClassifierLoadFailed",
194
+ "name": "AgentClassifier load failed",
195
+ "payload": [
196
+ {
197
+ "name": "message",
198
+ "type": "string"
199
+ }
200
+ ]
119
201
  }
120
202
  ],
121
203
  "transitions": [
@@ -133,19 +215,16 @@
133
215
  "main",
134
216
  {
135
217
  "type": "stack",
136
- "direction": "vertical",
137
- "gap": "lg",
138
218
  "children": [
139
219
  {
140
- "type": "stack",
220
+ "justify": "space-between",
141
221
  "direction": "horizontal",
222
+ "type": "stack",
142
223
  "gap": "md",
143
- "justify": "space-between",
144
224
  "children": [
145
225
  {
146
226
  "type": "stack",
147
227
  "direction": "horizontal",
148
- "gap": "md",
149
228
  "children": [
150
229
  {
151
230
  "type": "icon",
@@ -157,14 +236,15 @@
157
236
  "content": "AgentClassifier",
158
237
  "variant": "h2"
159
238
  }
160
- ]
239
+ ],
240
+ "gap": "md"
161
241
  },
162
242
  {
163
- "type": "button",
164
- "label": "Open",
243
+ "icon": "tag",
165
244
  "event": "CLASSIFY",
245
+ "type": "button",
166
246
  "variant": "primary",
167
- "icon": "tag"
247
+ "label": "Open"
168
248
  }
169
249
  ]
170
250
  },
@@ -172,12 +252,14 @@
172
252
  "type": "divider"
173
253
  },
174
254
  {
175
- "type": "empty-state",
176
255
  "icon": "tag",
177
- "title": "Nothing open",
178
- "description": "Click Open to view details in a modal overlay."
256
+ "description": "Click Open to view details in a modal overlay.",
257
+ "type": "empty-state",
258
+ "title": "Nothing open"
179
259
  }
180
- ]
260
+ ],
261
+ "gap": "lg",
262
+ "direction": "vertical"
181
263
  }
182
264
  ]
183
265
  ]
@@ -196,18 +278,18 @@
196
278
  "gap": "md",
197
279
  "children": [
198
280
  {
199
- "type": "stack",
200
281
  "direction": "horizontal",
201
282
  "gap": "sm",
283
+ "type": "stack",
202
284
  "children": [
203
285
  {
286
+ "size": "md",
204
287
  "type": "icon",
205
- "name": "tag",
206
- "size": "md"
288
+ "name": "tag"
207
289
  },
208
290
  {
209
- "type": "typography",
210
291
  "content": "AgentClassifier",
292
+ "type": "typography",
211
293
  "variant": "h3"
212
294
  }
213
295
  ]
@@ -222,35 +304,35 @@
222
304
  "children": [
223
305
  {
224
306
  "type": "typography",
225
- "variant": "caption",
226
- "content": "Categories:"
307
+ "content": "Categories:",
308
+ "variant": "caption"
227
309
  },
228
310
  {
229
311
  "type": "badge",
230
- "label": "positive",
231
- "variant": "secondary"
312
+ "variant": "secondary",
313
+ "label": "positive"
232
314
  },
233
315
  {
234
- "type": "badge",
235
316
  "label": "negative",
236
- "variant": "secondary"
317
+ "variant": "secondary",
318
+ "type": "badge"
237
319
  },
238
320
  {
321
+ "variant": "secondary",
239
322
  "type": "badge",
240
- "label": "neutral",
241
- "variant": "secondary"
323
+ "label": "neutral"
242
324
  }
243
325
  ]
244
326
  },
245
327
  {
246
- "type": "form-section",
328
+ "cancelEvent": "CLOSE",
247
329
  "entity": "AgentClassifier",
248
- "mode": "create",
249
330
  "submitEvent": "SAVE",
250
- "cancelEvent": "CLOSE",
251
331
  "fields": [
252
332
  "input"
253
- ]
333
+ ],
334
+ "mode": "create",
335
+ "type": "form-section"
254
336
  }
255
337
  ]
256
338
  }
@@ -281,13 +363,10 @@
281
363
  "main",
282
364
  {
283
365
  "type": "stack",
284
- "direction": "vertical",
285
366
  "gap": "lg",
286
367
  "children": [
287
368
  {
288
- "type": "stack",
289
369
  "direction": "horizontal",
290
- "gap": "md",
291
370
  "justify": "space-between",
292
371
  "children": [
293
372
  {
@@ -296,9 +375,9 @@
296
375
  "gap": "md",
297
376
  "children": [
298
377
  {
378
+ "size": "lg",
299
379
  "type": "icon",
300
- "name": "tag",
301
- "size": "lg"
380
+ "name": "tag"
302
381
  },
303
382
  {
304
383
  "type": "typography",
@@ -308,24 +387,27 @@
308
387
  ]
309
388
  },
310
389
  {
390
+ "icon": "tag",
311
391
  "type": "button",
312
- "label": "Open",
313
- "event": "CLASSIFY",
314
392
  "variant": "primary",
315
- "icon": "tag"
393
+ "label": "Open",
394
+ "event": "CLASSIFY"
316
395
  }
317
- ]
396
+ ],
397
+ "gap": "md",
398
+ "type": "stack"
318
399
  },
319
400
  {
320
401
  "type": "divider"
321
402
  },
322
403
  {
404
+ "title": "Nothing open",
323
405
  "type": "empty-state",
324
406
  "icon": "tag",
325
- "title": "Nothing open",
326
407
  "description": "Click Open to view details in a modal overlay."
327
408
  }
328
- ]
409
+ ],
410
+ "direction": "vertical"
329
411
  }
330
412
  ]
331
413
  ]
@@ -358,50 +440,50 @@
358
440
  "render-ui",
359
441
  "main",
360
442
  {
361
- "type": "stack",
362
443
  "direction": "vertical",
444
+ "type": "stack",
363
445
  "gap": "lg",
364
446
  "children": [
365
447
  {
366
- "type": "stack",
367
- "direction": "horizontal",
368
- "gap": "md",
369
448
  "justify": "space-between",
370
449
  "children": [
371
450
  {
372
- "type": "stack",
373
- "direction": "horizontal",
374
- "gap": "md",
375
451
  "children": [
376
452
  {
377
453
  "type": "icon",
378
- "name": "tag",
379
- "size": "lg"
454
+ "size": "lg",
455
+ "name": "tag"
380
456
  },
381
457
  {
382
- "type": "typography",
383
458
  "content": "AgentClassifier",
459
+ "type": "typography",
384
460
  "variant": "h2"
385
461
  }
386
- ]
462
+ ],
463
+ "gap": "md",
464
+ "type": "stack",
465
+ "direction": "horizontal"
387
466
  },
388
467
  {
389
- "type": "button",
468
+ "variant": "primary",
390
469
  "label": "Open",
470
+ "icon": "tag",
391
471
  "event": "CLASSIFY",
392
- "variant": "primary",
393
- "icon": "tag"
472
+ "type": "button"
394
473
  }
395
- ]
474
+ ],
475
+ "type": "stack",
476
+ "direction": "horizontal",
477
+ "gap": "md"
396
478
  },
397
479
  {
398
480
  "type": "divider"
399
481
  },
400
482
  {
401
483
  "type": "empty-state",
402
- "icon": "tag",
484
+ "description": "Click Open to view details in a modal overlay.",
403
485
  "title": "Nothing open",
404
- "description": "Click Open to view details in a modal overlay."
486
+ "icon": "tag"
405
487
  }
406
488
  ]
407
489
  }
@@ -409,12 +491,77 @@
409
491
  ]
410
492
  }
411
493
  ]
412
- }
494
+ },
495
+ "scope": "instance"
413
496
  },
414
497
  {
415
498
  "name": "AgentClassifierNotification",
416
- "linkedEntity": "AgentClassifier",
417
499
  "category": "interaction",
500
+ "linkedEntity": "AgentClassifier",
501
+ "emits": [
502
+ {
503
+ "event": "AgentClassifierLoaded",
504
+ "description": "Fired when AgentClassifier finishes loading",
505
+ "scope": "internal",
506
+ "payload": [
507
+ {
508
+ "name": "id",
509
+ "type": "string"
510
+ },
511
+ {
512
+ "name": "name",
513
+ "type": "string"
514
+ },
515
+ {
516
+ "name": "description",
517
+ "type": "string"
518
+ },
519
+ {
520
+ "name": "status",
521
+ "type": "string"
522
+ },
523
+ {
524
+ "name": "createdAt",
525
+ "type": "string"
526
+ },
527
+ {
528
+ "name": "input",
529
+ "type": "string"
530
+ },
531
+ {
532
+ "name": "category",
533
+ "type": "string"
534
+ },
535
+ {
536
+ "name": "confidence",
537
+ "type": "number"
538
+ },
539
+ {
540
+ "name": "model",
541
+ "type": "string"
542
+ },
543
+ {
544
+ "name": "message",
545
+ "type": "string"
546
+ },
547
+ {
548
+ "name": "notificationType",
549
+ "type": "string"
550
+ }
551
+ ]
552
+ },
553
+ {
554
+ "event": "AgentClassifierLoadFailed",
555
+ "description": "Fired when AgentClassifier fails to load",
556
+ "scope": "internal",
557
+ "payload": [
558
+ {
559
+ "name": "message",
560
+ "type": "string"
561
+ }
562
+ ]
563
+ }
564
+ ],
418
565
  "stateMachine": {
419
566
  "states": [
420
567
  {
@@ -432,7 +579,7 @@
432
579
  },
433
580
  {
434
581
  "key": "SHOW",
435
- "name": "Show Notification",
582
+ "name": "Show",
436
583
  "payload": [
437
584
  {
438
585
  "name": "message",
@@ -447,7 +594,21 @@
447
594
  },
448
595
  {
449
596
  "key": "HIDE",
450
- "name": "Hide Notification"
597
+ "name": "Hide"
598
+ },
599
+ {
600
+ "key": "AgentClassifierLoaded",
601
+ "name": "AgentClassifier loaded"
602
+ },
603
+ {
604
+ "key": "AgentClassifierLoadFailed",
605
+ "name": "AgentClassifier load failed",
606
+ "payload": [
607
+ {
608
+ "name": "message",
609
+ "type": "string"
610
+ }
611
+ ]
451
612
  }
452
613
  ],
453
614
  "transitions": [
@@ -458,7 +619,13 @@
458
619
  "effects": [
459
620
  [
460
621
  "fetch",
461
- "AgentClassifier"
622
+ "AgentClassifier",
623
+ {
624
+ "emit": {
625
+ "failure": "AgentClassifierLoadFailed",
626
+ "success": "AgentClassifierLoaded"
627
+ }
628
+ }
462
629
  ]
463
630
  ]
464
631
  },
@@ -481,64 +648,64 @@
481
648
  "render-ui",
482
649
  "main",
483
650
  {
651
+ "gap": "lg",
484
652
  "type": "stack",
485
653
  "direction": "vertical",
486
- "gap": "lg",
487
654
  "children": [
488
655
  {
489
- "type": "stack",
490
- "direction": "horizontal",
491
- "gap": "md",
492
- "justify": "space-between",
493
656
  "align": "center",
657
+ "type": "stack",
494
658
  "children": [
495
659
  {
496
660
  "type": "stack",
497
- "direction": "horizontal",
498
661
  "gap": "md",
499
- "align": "center",
500
662
  "children": [
501
663
  {
502
- "type": "icon",
664
+ "size": "lg",
503
665
  "name": "tag",
504
- "size": "lg"
666
+ "type": "icon"
505
667
  },
506
668
  {
507
669
  "type": "typography",
508
670
  "content": "AgentClassifier Result",
509
671
  "variant": "h2"
510
672
  }
511
- ]
673
+ ],
674
+ "align": "center",
675
+ "direction": "horizontal"
512
676
  },
513
677
  {
514
678
  "type": "button",
679
+ "icon": "x",
515
680
  "label": "Dismiss",
516
- "event": "HIDE",
517
681
  "variant": "ghost",
518
- "icon": "x"
682
+ "event": "HIDE"
519
683
  }
520
- ]
684
+ ],
685
+ "gap": "md",
686
+ "justify": "space-between",
687
+ "direction": "horizontal"
521
688
  },
522
689
  {
523
690
  "type": "divider"
524
691
  },
525
692
  {
526
- "type": "alert",
527
- "variant": [
693
+ "message": [
528
694
  "object/get",
529
695
  [
530
696
  "array/first",
531
697
  "@entity"
532
698
  ],
533
- "notificationType"
699
+ "message"
534
700
  ],
535
- "message": [
701
+ "type": "alert",
702
+ "variant": [
536
703
  "object/get",
537
704
  [
538
705
  "array/first",
539
706
  "@entity"
540
707
  ],
541
- "message"
708
+ "notificationType"
542
709
  ]
543
710
  },
544
711
  {
@@ -546,7 +713,7 @@
546
713
  "position": "top-right"
547
714
  },
548
715
  {
549
- "type": "violation-alert",
716
+ "category": "compliance",
550
717
  "severity": "warning",
551
718
  "message": [
552
719
  "object/get",
@@ -556,7 +723,7 @@
556
723
  ],
557
724
  "message"
558
725
  ],
559
- "category": "compliance"
726
+ "type": "violation-alert"
560
727
  }
561
728
  ]
562
729
  }
@@ -582,64 +749,62 @@
582
749
  "render-ui",
583
750
  "main",
584
751
  {
585
- "type": "stack",
586
- "direction": "vertical",
587
752
  "gap": "lg",
588
753
  "children": [
589
754
  {
590
- "type": "stack",
591
- "direction": "horizontal",
592
- "gap": "md",
593
- "justify": "space-between",
594
- "align": "center",
595
755
  "children": [
596
756
  {
597
- "type": "stack",
598
- "direction": "horizontal",
599
- "gap": "md",
600
757
  "align": "center",
758
+ "direction": "horizontal",
759
+ "type": "stack",
601
760
  "children": [
602
761
  {
603
762
  "type": "icon",
604
- "name": "tag",
605
- "size": "lg"
763
+ "size": "lg",
764
+ "name": "tag"
606
765
  },
607
766
  {
608
- "type": "typography",
609
767
  "content": "AgentClassifier Result",
610
- "variant": "h2"
768
+ "variant": "h2",
769
+ "type": "typography"
611
770
  }
612
- ]
771
+ ],
772
+ "gap": "md"
613
773
  },
614
774
  {
775
+ "variant": "ghost",
615
776
  "type": "button",
616
777
  "label": "Dismiss",
617
- "event": "HIDE",
618
- "variant": "ghost",
619
- "icon": "x"
778
+ "icon": "x",
779
+ "event": "HIDE"
620
780
  }
621
- ]
781
+ ],
782
+ "type": "stack",
783
+ "direction": "horizontal",
784
+ "align": "center",
785
+ "gap": "md",
786
+ "justify": "space-between"
622
787
  },
623
788
  {
624
789
  "type": "divider"
625
790
  },
626
791
  {
627
- "type": "alert",
628
- "variant": [
792
+ "message": [
629
793
  "object/get",
630
794
  [
631
795
  "array/first",
632
796
  "@entity"
633
797
  ],
634
- "notificationType"
798
+ "message"
635
799
  ],
636
- "message": [
800
+ "type": "alert",
801
+ "variant": [
637
802
  "object/get",
638
803
  [
639
804
  "array/first",
640
805
  "@entity"
641
806
  ],
642
- "message"
807
+ "notificationType"
643
808
  ]
644
809
  },
645
810
  {
@@ -647,8 +812,6 @@
647
812
  "position": "top-right"
648
813
  },
649
814
  {
650
- "type": "violation-alert",
651
- "severity": "warning",
652
815
  "message": [
653
816
  "object/get",
654
817
  [
@@ -657,9 +820,13 @@
657
820
  ],
658
821
  "message"
659
822
  ],
660
- "category": "compliance"
823
+ "type": "violation-alert",
824
+ "category": "compliance",
825
+ "severity": "warning"
661
826
  }
662
- ]
827
+ ],
828
+ "direction": "vertical",
829
+ "type": "stack"
663
830
  }
664
831
  ]
665
832
  ]
@@ -677,12 +844,13 @@
677
844
  ]
678
845
  }
679
846
  ]
680
- }
847
+ },
848
+ "scope": "instance"
681
849
  },
682
850
  {
683
851
  "name": "AgentClassifierAgent",
684
- "linkedEntity": "AgentClassifier",
685
852
  "category": "interaction",
853
+ "linkedEntity": "AgentClassifier",
686
854
  "emits": [
687
855
  {
688
856
  "event": "SHOW",
@@ -697,13 +865,78 @@
697
865
  "type": "number"
698
866
  }
699
867
  ]
868
+ },
869
+ {
870
+ "event": "AgentClassifierLoaded",
871
+ "description": "Fired when AgentClassifier finishes loading",
872
+ "scope": "internal",
873
+ "payload": [
874
+ {
875
+ "name": "id",
876
+ "type": "string"
877
+ },
878
+ {
879
+ "name": "name",
880
+ "type": "string"
881
+ },
882
+ {
883
+ "name": "description",
884
+ "type": "string"
885
+ },
886
+ {
887
+ "name": "status",
888
+ "type": "string"
889
+ },
890
+ {
891
+ "name": "createdAt",
892
+ "type": "string"
893
+ },
894
+ {
895
+ "name": "input",
896
+ "type": "string"
897
+ },
898
+ {
899
+ "name": "category",
900
+ "type": "string"
901
+ },
902
+ {
903
+ "name": "confidence",
904
+ "type": "number"
905
+ },
906
+ {
907
+ "name": "model",
908
+ "type": "string"
909
+ },
910
+ {
911
+ "name": "message",
912
+ "type": "string"
913
+ },
914
+ {
915
+ "name": "notificationType",
916
+ "type": "string"
917
+ }
918
+ ]
919
+ },
920
+ {
921
+ "event": "AgentClassifierLoadFailed",
922
+ "description": "Fired when AgentClassifier fails to load",
923
+ "scope": "internal",
924
+ "payload": [
925
+ {
926
+ "name": "message",
927
+ "type": "string"
928
+ }
929
+ ]
700
930
  }
701
931
  ],
702
932
  "listens": [
703
933
  {
704
934
  "event": "CLASSIFIED",
705
935
  "triggers": "CLASSIFIED",
706
- "scope": "external"
936
+ "source": {
937
+ "kind": "trait",
938
+ "trait": "AgentClassifierModal"
939
+ }
707
940
  }
708
941
  ],
709
942
  "stateMachine": {
@@ -735,18 +968,29 @@
735
968
  }
736
969
  ]
737
970
  },
971
+ {
972
+ "key": "CLASSIFIED",
973
+ "name": "Classified"
974
+ },
738
975
  {
739
976
  "key": "RESET",
740
977
  "name": "Reset"
741
978
  },
742
979
  {
743
- "key": "CLASSIFIED",
744
- "name": "Classified",
980
+ "key": "SHOW",
981
+ "name": "Show"
982
+ },
983
+ {
984
+ "key": "AgentClassifierLoaded",
985
+ "name": "AgentClassifier loaded"
986
+ },
987
+ {
988
+ "key": "AgentClassifierLoadFailed",
989
+ "name": "AgentClassifier load failed",
745
990
  "payload": [
746
991
  {
747
- "name": "data",
748
- "type": "object",
749
- "required": true
992
+ "name": "message",
993
+ "type": "string"
750
994
  }
751
995
  ]
752
996
  }
@@ -759,16 +1003,22 @@
759
1003
  "effects": [
760
1004
  [
761
1005
  "fetch",
762
- "AgentClassifier"
1006
+ "AgentClassifier",
1007
+ {
1008
+ "emit": {
1009
+ "success": "AgentClassifierLoaded",
1010
+ "failure": "AgentClassifierLoadFailed"
1011
+ }
1012
+ }
763
1013
  ],
764
1014
  [
765
1015
  "render-ui",
766
1016
  "main",
767
1017
  {
768
1018
  "type": "empty-state",
769
- "icon": "tag",
770
1019
  "title": "Classifier",
771
- "description": "Classifier is ready"
1020
+ "description": "Classifier is ready",
1021
+ "icon": "tag"
772
1022
  }
773
1023
  ]
774
1024
  ]
@@ -843,12 +1093,13 @@
843
1093
  [
844
1094
  "set",
845
1095
  "@entity.confidence",
846
- 0
1096
+ 0.0
847
1097
  ]
848
1098
  ]
849
1099
  }
850
1100
  ]
851
- }
1101
+ },
1102
+ "scope": "instance"
852
1103
  }
853
1104
  ],
854
1105
  "pages": [
@@ -870,4 +1121,4 @@
870
1121
  ]
871
1122
  }
872
1123
  ]
873
- }
1124
+ }