@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-activity-log",
3
3
  "version": "1.0.0",
4
- "description": "Chronological action log atom for tracking agent operations. Provides a timeline view of agent actions with status indicators, duration tracking, and clear functionality. Listens for LOG_ENTRY events from sibling traits.",
4
+ "description": "std-agent-activity-log as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "AgentActivityLogOrbital",
8
8
  "entity": {
9
9
  "name": "AgentActivityLog",
10
- "persistence": "persistent",
11
10
  "collection": "agentactivitylogs",
11
+ "persistence": "persistent",
12
12
  "fields": [
13
13
  {
14
14
  "name": "id",
@@ -54,7 +54,7 @@
54
54
  {
55
55
  "name": "duration",
56
56
  "type": "number",
57
- "default": 0
57
+ "default": 0.0
58
58
  },
59
59
  {
60
60
  "name": "icon",
@@ -66,8 +66,8 @@
66
66
  "traits": [
67
67
  {
68
68
  "name": "AgentActivityLogLog",
69
- "linkedEntity": "AgentActivityLog",
70
69
  "category": "interaction",
70
+ "linkedEntity": "AgentActivityLog",
71
71
  "emits": [
72
72
  {
73
73
  "event": "LOG_ENTRY",
@@ -86,13 +86,74 @@
86
86
  "type": "string"
87
87
  }
88
88
  ]
89
+ },
90
+ {
91
+ "event": "AgentActivityLogLoaded",
92
+ "description": "Fired when AgentActivityLog finishes loading",
93
+ "scope": "internal",
94
+ "payload": [
95
+ {
96
+ "name": "id",
97
+ "type": "string"
98
+ },
99
+ {
100
+ "name": "name",
101
+ "type": "string"
102
+ },
103
+ {
104
+ "name": "description",
105
+ "type": "string"
106
+ },
107
+ {
108
+ "name": "status",
109
+ "type": "string"
110
+ },
111
+ {
112
+ "name": "createdAt",
113
+ "type": "string"
114
+ },
115
+ {
116
+ "name": "action",
117
+ "type": "string"
118
+ },
119
+ {
120
+ "name": "detail",
121
+ "type": "string"
122
+ },
123
+ {
124
+ "name": "timestamp",
125
+ "type": "string"
126
+ },
127
+ {
128
+ "name": "duration",
129
+ "type": "number"
130
+ },
131
+ {
132
+ "name": "icon",
133
+ "type": "string"
134
+ }
135
+ ]
136
+ },
137
+ {
138
+ "event": "AgentActivityLogLoadFailed",
139
+ "description": "Fired when AgentActivityLog fails to load",
140
+ "scope": "internal",
141
+ "payload": [
142
+ {
143
+ "name": "message",
144
+ "type": "string"
145
+ }
146
+ ]
89
147
  }
90
148
  ],
91
149
  "listens": [
92
150
  {
93
151
  "event": "LOG_ENTRY",
94
152
  "triggers": "LOG_ENTRY",
95
- "scope": "external"
153
+ "source": {
154
+ "kind": "trait",
155
+ "trait": "AgentActivityLogLog"
156
+ }
96
157
  }
97
158
  ],
98
159
  "stateMachine": {
@@ -113,24 +174,35 @@
113
174
  "payload": [
114
175
  {
115
176
  "name": "action",
116
- "type": "string",
117
- "required": true
177
+ "type": "string"
118
178
  },
119
179
  {
120
180
  "name": "detail",
121
- "type": "string",
122
- "required": true
181
+ "type": "string"
123
182
  },
124
183
  {
125
184
  "name": "status",
126
- "type": "string",
127
- "required": true
185
+ "type": "string"
128
186
  }
129
187
  ]
130
188
  },
131
189
  {
132
190
  "key": "CLEAR",
133
- "name": "Clear Log"
191
+ "name": "Clear"
192
+ },
193
+ {
194
+ "key": "AgentActivityLogLoaded",
195
+ "name": "AgentActivityLog loaded"
196
+ },
197
+ {
198
+ "key": "AgentActivityLogLoadFailed",
199
+ "name": "AgentActivityLog load failed",
200
+ "payload": [
201
+ {
202
+ "name": "message",
203
+ "type": "string"
204
+ }
205
+ ]
134
206
  }
135
207
  ],
136
208
  "transitions": [
@@ -141,28 +213,28 @@
141
213
  "effects": [
142
214
  [
143
215
  "fetch",
144
- "AgentActivityLog"
216
+ "AgentActivityLog",
217
+ {
218
+ "emit": {
219
+ "success": "AgentActivityLogLoaded",
220
+ "failure": "AgentActivityLogLoadFailed"
221
+ }
222
+ }
145
223
  ],
146
224
  [
147
225
  "render-ui",
148
226
  "main",
149
227
  {
150
228
  "type": "stack",
151
- "direction": "vertical",
152
229
  "gap": "lg",
153
230
  "children": [
154
231
  {
155
232
  "type": "stack",
156
- "direction": "horizontal",
157
- "gap": "sm",
158
233
  "justify": "space-between",
159
234
  "align": "center",
160
235
  "children": [
161
236
  {
162
237
  "type": "stack",
163
- "direction": "horizontal",
164
- "gap": "sm",
165
- "align": "center",
166
238
  "children": [
167
239
  {
168
240
  "type": "icon",
@@ -170,28 +242,30 @@
170
242
  "size": "lg"
171
243
  },
172
244
  {
173
- "type": "typography",
174
245
  "content": "Activity Log",
175
- "variant": "h2"
246
+ "variant": "h2",
247
+ "type": "typography"
176
248
  }
177
- ]
249
+ ],
250
+ "gap": "sm",
251
+ "direction": "horizontal",
252
+ "align": "center"
178
253
  },
179
254
  {
180
255
  "type": "button",
181
256
  "label": "Clear",
182
257
  "event": "CLEAR",
183
- "variant": "ghost",
184
- "icon": "trash"
258
+ "icon": "trash",
259
+ "variant": "ghost"
185
260
  }
186
- ]
261
+ ],
262
+ "direction": "horizontal",
263
+ "gap": "sm"
187
264
  },
188
265
  {
189
266
  "type": "divider"
190
267
  },
191
268
  {
192
- "type": "data-list",
193
- "entity": "AgentActivityLog",
194
- "emptyIcon": "activity",
195
269
  "emptyTitle": "No activity yet",
196
270
  "emptyDescription": "Agent actions will appear here as they occur.",
197
271
  "renderItem": [
@@ -199,82 +273,60 @@
199
273
  "item",
200
274
  {
201
275
  "type": "stack",
202
- "direction": "horizontal",
203
- "gap": "md",
204
276
  "children": [
205
277
  {
278
+ "direction": "horizontal",
206
279
  "type": "stack",
207
- "direction": "vertical",
280
+ "gap": "sm",
208
281
  "align": "center",
209
- "className": "w-6 relative",
210
282
  "children": [
211
283
  {
212
- "type": "icon",
213
- "name": "activity",
214
- "size": "sm",
215
- "className": "z-10 bg-card"
284
+ "type": "badge",
285
+ "label": "@item.status"
216
286
  },
217
287
  {
218
- "type": "box",
219
- "className": "w-0.5 flex-1 bg-border opacity-40 min-h-[24px]"
288
+ "type": "typography",
289
+ "content": "@item.action",
290
+ "variant": "h4"
220
291
  }
221
292
  ]
222
293
  },
223
294
  {
295
+ "color": "muted",
296
+ "content": "@item.detail",
297
+ "variant": "body",
298
+ "type": "typography"
299
+ },
300
+ {
301
+ "direction": "horizontal",
224
302
  "type": "stack",
225
- "direction": "vertical",
226
- "gap": "xs",
227
- "className": "flex-1 pb-6",
228
303
  "children": [
229
304
  {
230
- "type": "stack",
231
- "direction": "horizontal",
232
- "gap": "sm",
233
- "align": "center",
234
- "children": [
235
- {
236
- "type": "badge",
237
- "label": "@item.status"
238
- },
239
- {
240
- "type": "typography",
241
- "variant": "h4",
242
- "content": "@item.action"
243
- }
244
- ]
245
- },
246
- {
247
- "type": "typography",
248
- "variant": "body",
249
305
  "color": "muted",
250
- "content": "@item.detail"
306
+ "type": "typography",
307
+ "content": "@item.timestamp",
308
+ "variant": "caption"
251
309
  },
252
310
  {
253
- "type": "stack",
254
- "direction": "horizontal",
255
- "gap": "sm",
256
- "align": "center",
257
- "children": [
258
- {
259
- "type": "typography",
260
- "variant": "caption",
261
- "color": "muted",
262
- "content": "@item.timestamp"
263
- },
264
- {
265
- "type": "badge",
266
- "label": "@item.duration",
267
- "variant": "outline"
268
- }
269
- ]
311
+ "variant": "outline",
312
+ "type": "badge",
313
+ "label": "@item.duration"
270
314
  }
271
- ]
315
+ ],
316
+ "gap": "sm",
317
+ "align": "center"
272
318
  }
273
- ]
319
+ ],
320
+ "gap": "xs",
321
+ "direction": "vertical"
274
322
  }
275
- ]
323
+ ],
324
+ "entity": "AgentActivityLog",
325
+ "type": "timeline",
326
+ "emptyIcon": "activity"
276
327
  }
277
- ]
328
+ ],
329
+ "direction": "vertical"
278
330
  }
279
331
  ]
280
332
  ]
@@ -289,15 +341,21 @@
289
341
  "create",
290
342
  "AgentActivityLog",
291
343
  {
292
- "action": "@payload.action",
293
- "detail": "@payload.detail",
294
344
  "status": "@payload.status",
345
+ "detail": "@payload.detail",
346
+ "action": "@payload.action",
295
347
  "timestamp": "@now"
296
348
  }
297
349
  ],
298
350
  [
299
351
  "fetch",
300
- "AgentActivityLog"
352
+ "AgentActivityLog",
353
+ {
354
+ "emit": {
355
+ "success": "AgentActivityLogLoaded",
356
+ "failure": "AgentActivityLogLoadFailed"
357
+ }
358
+ }
301
359
  ],
302
360
  [
303
361
  "render-ui",
@@ -308,17 +366,13 @@
308
366
  "gap": "lg",
309
367
  "children": [
310
368
  {
311
- "type": "stack",
369
+ "justify": "space-between",
312
370
  "direction": "horizontal",
371
+ "type": "stack",
313
372
  "gap": "sm",
314
- "justify": "space-between",
315
- "align": "center",
316
373
  "children": [
317
374
  {
318
- "type": "stack",
319
375
  "direction": "horizontal",
320
- "gap": "sm",
321
- "align": "center",
322
376
  "children": [
323
377
  {
324
378
  "type": "icon",
@@ -326,109 +380,87 @@
326
380
  "size": "lg"
327
381
  },
328
382
  {
329
- "type": "typography",
330
383
  "content": "Activity Log",
384
+ "type": "typography",
331
385
  "variant": "h2"
332
386
  }
333
- ]
387
+ ],
388
+ "gap": "sm",
389
+ "align": "center",
390
+ "type": "stack"
334
391
  },
335
392
  {
336
- "type": "button",
337
- "label": "Clear",
338
393
  "event": "CLEAR",
339
- "variant": "ghost",
340
- "icon": "trash"
394
+ "label": "Clear",
395
+ "type": "button",
396
+ "icon": "trash",
397
+ "variant": "ghost"
341
398
  }
342
- ]
399
+ ],
400
+ "align": "center"
343
401
  },
344
402
  {
345
403
  "type": "divider"
346
404
  },
347
405
  {
348
- "type": "data-list",
406
+ "emptyDescription": "Agent actions will appear here as they occur.",
349
407
  "entity": "AgentActivityLog",
350
408
  "emptyIcon": "activity",
351
- "emptyTitle": "No activity yet",
352
- "emptyDescription": "Agent actions will appear here as they occur.",
353
409
  "renderItem": [
354
410
  "fn",
355
411
  "item",
356
412
  {
357
- "type": "stack",
358
- "direction": "horizontal",
359
- "gap": "md",
413
+ "gap": "xs",
360
414
  "children": [
361
415
  {
362
- "type": "stack",
363
- "direction": "vertical",
364
416
  "align": "center",
365
- "className": "w-6 relative",
366
417
  "children": [
367
418
  {
368
- "type": "icon",
369
- "name": "activity",
370
- "size": "sm",
371
- "className": "z-10 bg-card"
419
+ "label": "@item.status",
420
+ "type": "badge"
372
421
  },
373
422
  {
374
- "type": "box",
375
- "className": "w-0.5 flex-1 bg-border opacity-40 min-h-[24px]"
423
+ "variant": "h4",
424
+ "content": "@item.action",
425
+ "type": "typography"
376
426
  }
377
- ]
427
+ ],
428
+ "gap": "sm",
429
+ "direction": "horizontal",
430
+ "type": "stack"
431
+ },
432
+ {
433
+ "variant": "body",
434
+ "type": "typography",
435
+ "content": "@item.detail",
436
+ "color": "muted"
378
437
  },
379
438
  {
380
439
  "type": "stack",
381
- "direction": "vertical",
382
- "gap": "xs",
383
- "className": "flex-1 pb-6",
440
+ "align": "center",
384
441
  "children": [
385
442
  {
386
- "type": "stack",
387
- "direction": "horizontal",
388
- "gap": "sm",
389
- "align": "center",
390
- "children": [
391
- {
392
- "type": "badge",
393
- "label": "@item.status"
394
- },
395
- {
396
- "type": "typography",
397
- "variant": "h4",
398
- "content": "@item.action"
399
- }
400
- ]
401
- },
402
- {
403
- "type": "typography",
404
- "variant": "body",
405
443
  "color": "muted",
406
- "content": "@item.detail"
444
+ "content": "@item.timestamp",
445
+ "type": "typography",
446
+ "variant": "caption"
407
447
  },
408
448
  {
409
- "type": "stack",
410
- "direction": "horizontal",
411
- "gap": "sm",
412
- "align": "center",
413
- "children": [
414
- {
415
- "type": "typography",
416
- "variant": "caption",
417
- "color": "muted",
418
- "content": "@item.timestamp"
419
- },
420
- {
421
- "type": "badge",
422
- "label": "@item.duration",
423
- "variant": "outline"
424
- }
425
- ]
449
+ "label": "@item.duration",
450
+ "variant": "outline",
451
+ "type": "badge"
426
452
  }
427
- ]
453
+ ],
454
+ "direction": "horizontal",
455
+ "gap": "sm"
428
456
  }
429
- ]
457
+ ],
458
+ "direction": "vertical",
459
+ "type": "stack"
430
460
  }
431
- ]
461
+ ],
462
+ "type": "timeline",
463
+ "emptyTitle": "No activity yet"
432
464
  }
433
465
  ]
434
466
  }
@@ -447,46 +479,52 @@
447
479
  ],
448
480
  [
449
481
  "fetch",
450
- "AgentActivityLog"
482
+ "AgentActivityLog",
483
+ {
484
+ "emit": {
485
+ "success": "AgentActivityLogLoaded",
486
+ "failure": "AgentActivityLogLoadFailed"
487
+ }
488
+ }
451
489
  ],
452
490
  [
453
491
  "render-ui",
454
492
  "main",
455
493
  {
456
- "type": "stack",
457
494
  "direction": "vertical",
458
495
  "gap": "lg",
496
+ "type": "stack",
459
497
  "children": [
460
498
  {
461
- "type": "stack",
462
- "direction": "horizontal",
463
499
  "gap": "sm",
500
+ "direction": "horizontal",
501
+ "type": "stack",
464
502
  "justify": "space-between",
465
503
  "align": "center",
466
504
  "children": [
467
505
  {
468
- "type": "stack",
469
506
  "direction": "horizontal",
470
- "gap": "sm",
471
- "align": "center",
472
507
  "children": [
473
508
  {
474
- "type": "icon",
475
509
  "name": "activity",
510
+ "type": "icon",
476
511
  "size": "lg"
477
512
  },
478
513
  {
479
- "type": "typography",
480
514
  "content": "Activity Log",
481
- "variant": "h2"
515
+ "variant": "h2",
516
+ "type": "typography"
482
517
  }
483
- ]
518
+ ],
519
+ "align": "center",
520
+ "gap": "sm",
521
+ "type": "stack"
484
522
  },
485
523
  {
486
524
  "type": "button",
487
- "label": "Clear",
488
525
  "event": "CLEAR",
489
526
  "variant": "ghost",
527
+ "label": "Clear",
490
528
  "icon": "trash"
491
529
  }
492
530
  ]
@@ -495,88 +533,62 @@
495
533
  "type": "divider"
496
534
  },
497
535
  {
498
- "type": "data-list",
499
536
  "entity": "AgentActivityLog",
500
- "emptyIcon": "activity",
501
537
  "emptyTitle": "No activity yet",
502
538
  "emptyDescription": "Agent actions will appear here as they occur.",
539
+ "type": "timeline",
540
+ "emptyIcon": "activity",
503
541
  "renderItem": [
504
542
  "fn",
505
543
  "item",
506
544
  {
507
545
  "type": "stack",
508
- "direction": "horizontal",
509
- "gap": "md",
546
+ "gap": "xs",
510
547
  "children": [
511
548
  {
512
- "type": "stack",
513
- "direction": "vertical",
514
- "align": "center",
515
- "className": "w-6 relative",
516
549
  "children": [
517
550
  {
518
- "type": "icon",
519
- "name": "activity",
520
- "size": "sm",
521
- "className": "z-10 bg-card"
551
+ "label": "@item.status",
552
+ "type": "badge"
522
553
  },
523
554
  {
524
- "type": "box",
525
- "className": "w-0.5 flex-1 bg-border opacity-40 min-h-[24px]"
555
+ "type": "typography",
556
+ "variant": "h4",
557
+ "content": "@item.action"
526
558
  }
527
- ]
559
+ ],
560
+ "gap": "sm",
561
+ "align": "center",
562
+ "type": "stack",
563
+ "direction": "horizontal"
564
+ },
565
+ {
566
+ "color": "muted",
567
+ "type": "typography",
568
+ "content": "@item.detail",
569
+ "variant": "body"
528
570
  },
529
571
  {
530
572
  "type": "stack",
531
- "direction": "vertical",
532
- "gap": "xs",
533
- "className": "flex-1 pb-6",
573
+ "gap": "sm",
574
+ "direction": "horizontal",
575
+ "align": "center",
534
576
  "children": [
535
577
  {
536
- "type": "stack",
537
- "direction": "horizontal",
538
- "gap": "sm",
539
- "align": "center",
540
- "children": [
541
- {
542
- "type": "badge",
543
- "label": "@item.status"
544
- },
545
- {
546
- "type": "typography",
547
- "variant": "h4",
548
- "content": "@item.action"
549
- }
550
- ]
551
- },
552
- {
553
- "type": "typography",
554
- "variant": "body",
555
578
  "color": "muted",
556
- "content": "@item.detail"
579
+ "variant": "caption",
580
+ "type": "typography",
581
+ "content": "@item.timestamp"
557
582
  },
558
583
  {
559
- "type": "stack",
560
- "direction": "horizontal",
561
- "gap": "sm",
562
- "align": "center",
563
- "children": [
564
- {
565
- "type": "typography",
566
- "variant": "caption",
567
- "color": "muted",
568
- "content": "@item.timestamp"
569
- },
570
- {
571
- "type": "badge",
572
- "label": "@item.duration",
573
- "variant": "outline"
574
- }
575
- ]
584
+ "variant": "outline",
585
+ "type": "badge",
586
+ "label": "@item.duration"
576
587
  }
577
588
  ]
578
589
  }
579
- ]
590
+ ],
591
+ "direction": "vertical"
580
592
  }
581
593
  ]
582
594
  }
@@ -586,7 +598,8 @@
586
598
  ]
587
599
  }
588
600
  ]
589
- }
601
+ },
602
+ "scope": "instance"
590
603
  }
591
604
  ],
592
605
  "pages": [
@@ -602,4 +615,4 @@
602
615
  ]
603
616
  }
604
617
  ]
605
- }
618
+ }