@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,7 +1,7 @@
1
1
  {
2
2
  "name": "std-theme",
3
3
  "version": "1.0.0",
4
- "description": "Theme selection atom with toggle and full selector. Absorbs: theme-toggle, theme-selector.",
4
+ "description": "std-theme as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ThemePreferenceOrbital",
@@ -45,24 +45,61 @@
45
45
  "type": "string",
46
46
  "default": "default"
47
47
  }
48
- ],
49
- "instances": [
50
- {
51
- "id": "theme-1",
52
- "name": "Default Theme",
53
- "description": "System default",
54
- "status": "active",
55
- "createdAt": "2026-01-01",
56
- "mode": "light",
57
- "colorScheme": "almadar"
58
- }
59
48
  ]
60
49
  },
61
50
  "traits": [
62
51
  {
63
52
  "name": "ThemePreferenceTheme",
64
- "linkedEntity": "ThemePreference",
65
53
  "category": "interaction",
54
+ "linkedEntity": "ThemePreference",
55
+ "emits": [
56
+ {
57
+ "event": "ThemePreferenceLoaded",
58
+ "description": "Fired when ThemePreference finishes loading",
59
+ "scope": "internal",
60
+ "payload": [
61
+ {
62
+ "name": "id",
63
+ "type": "string"
64
+ },
65
+ {
66
+ "name": "name",
67
+ "type": "string"
68
+ },
69
+ {
70
+ "name": "description",
71
+ "type": "string"
72
+ },
73
+ {
74
+ "name": "status",
75
+ "type": "string"
76
+ },
77
+ {
78
+ "name": "createdAt",
79
+ "type": "string"
80
+ },
81
+ {
82
+ "name": "mode",
83
+ "type": "string"
84
+ },
85
+ {
86
+ "name": "colorScheme",
87
+ "type": "string"
88
+ }
89
+ ]
90
+ },
91
+ {
92
+ "event": "ThemePreferenceLoadFailed",
93
+ "description": "Fired when ThemePreference fails to load",
94
+ "scope": "internal",
95
+ "payload": [
96
+ {
97
+ "name": "message",
98
+ "type": "string"
99
+ }
100
+ ]
101
+ }
102
+ ],
66
103
  "stateMachine": {
67
104
  "states": [
68
105
  {
@@ -77,11 +114,11 @@
77
114
  },
78
115
  {
79
116
  "key": "TOGGLE",
80
- "name": "Toggle Theme"
117
+ "name": "Toggle"
81
118
  },
82
119
  {
83
120
  "key": "SELECT",
84
- "name": "Select Theme",
121
+ "name": "Select",
85
122
  "payload": [
86
123
  {
87
124
  "name": "theme",
@@ -89,6 +126,20 @@
89
126
  "required": true
90
127
  }
91
128
  ]
129
+ },
130
+ {
131
+ "key": "ThemePreferenceLoaded",
132
+ "name": "ThemePreference loaded"
133
+ },
134
+ {
135
+ "key": "ThemePreferenceLoadFailed",
136
+ "name": "ThemePreference load failed",
137
+ "payload": [
138
+ {
139
+ "name": "message",
140
+ "type": "string"
141
+ }
142
+ ]
92
143
  }
93
144
  ],
94
145
  "transitions": [
@@ -99,31 +150,35 @@
99
150
  "effects": [
100
151
  [
101
152
  "fetch",
102
- "ThemePreference"
153
+ "ThemePreference",
154
+ {
155
+ "emit": {
156
+ "success": "ThemePreferenceLoaded",
157
+ "failure": "ThemePreferenceLoadFailed"
158
+ }
159
+ }
103
160
  ],
104
161
  [
105
162
  "render-ui",
106
163
  "main",
107
164
  {
108
- "type": "stack",
109
- "direction": "vertical",
110
165
  "gap": "lg",
111
166
  "children": [
112
167
  {
113
- "type": "stack",
114
168
  "direction": "horizontal",
115
169
  "gap": "sm",
116
170
  "align": "center",
171
+ "type": "stack",
117
172
  "children": [
118
173
  {
174
+ "size": "lg",
119
175
  "type": "icon",
120
- "name": "palette",
121
- "size": "lg"
176
+ "name": "palette"
122
177
  },
123
178
  {
179
+ "variant": "h2",
124
180
  "type": "typography",
125
- "content": "Theme Settings",
126
- "variant": "h2"
181
+ "content": "Theme Settings"
127
182
  }
128
183
  ]
129
184
  },
@@ -135,24 +190,24 @@
135
190
  "children": [
136
191
  {
137
192
  "type": "stack",
138
- "direction": "vertical",
139
- "gap": "md",
140
193
  "children": [
141
194
  {
142
- "type": "typography",
143
195
  "variant": "h4",
144
- "content": "Quick Toggle"
196
+ "content": "Quick Toggle",
197
+ "type": "typography"
145
198
  },
146
199
  {
147
- "type": "typography",
148
200
  "variant": "caption",
149
- "color": "muted",
150
- "content": "Switch between light and dark mode"
201
+ "type": "typography",
202
+ "content": "Switch between light and dark mode",
203
+ "color": "muted"
151
204
  },
152
205
  {
153
206
  "type": "theme-toggle"
154
207
  }
155
- ]
208
+ ],
209
+ "direction": "vertical",
210
+ "gap": "md"
156
211
  }
157
212
  ]
158
213
  },
@@ -160,61 +215,57 @@
160
215
  "type": "card",
161
216
  "children": [
162
217
  {
163
- "type": "stack",
164
- "direction": "vertical",
165
- "gap": "md",
166
218
  "children": [
167
219
  {
168
220
  "type": "typography",
169
- "variant": "h4",
170
- "content": "Theme Palette"
221
+ "content": "Theme Palette",
222
+ "variant": "h4"
171
223
  },
172
224
  {
173
- "type": "typography",
174
225
  "variant": "caption",
175
226
  "color": "muted",
176
- "content": "Choose from available color schemes"
227
+ "content": "Choose from available color schemes",
228
+ "type": "typography"
177
229
  },
178
230
  {
179
231
  "type": "simple-grid",
180
- "columns": 3,
181
232
  "children": [
182
233
  {
183
- "type": "button",
184
- "label": "Almadar",
185
234
  "event": "SELECT",
186
- "variant": "secondary"
235
+ "variant": "secondary",
236
+ "type": "button",
237
+ "label": "Almadar"
187
238
  },
188
239
  {
189
- "type": "button",
190
- "label": "Ocean",
240
+ "variant": "secondary",
191
241
  "event": "SELECT",
192
- "variant": "secondary"
242
+ "label": "Ocean",
243
+ "type": "button"
193
244
  },
194
245
  {
195
246
  "type": "button",
196
- "label": "Forest",
247
+ "variant": "secondary",
197
248
  "event": "SELECT",
198
- "variant": "secondary"
249
+ "label": "Forest"
199
250
  }
200
- ]
251
+ ],
252
+ "columns": 3.0
201
253
  }
202
- ]
254
+ ],
255
+ "gap": "md",
256
+ "direction": "vertical",
257
+ "type": "stack"
203
258
  }
204
259
  ]
205
260
  },
206
261
  {
207
- "type": "stack",
208
- "direction": "horizontal",
209
- "gap": "md",
210
262
  "children": [
211
263
  {
212
264
  "type": "typography",
213
- "variant": "caption",
214
- "content": "Current mode:"
265
+ "content": "Current mode:",
266
+ "variant": "caption"
215
267
  },
216
268
  {
217
- "type": "badge",
218
269
  "label": [
219
270
  "object/get",
220
271
  [
@@ -222,12 +273,13 @@
222
273
  "@entity"
223
274
  ],
224
275
  "mode"
225
- ]
276
+ ],
277
+ "type": "badge"
226
278
  },
227
279
  {
280
+ "content": "Scheme:",
228
281
  "type": "typography",
229
- "variant": "caption",
230
- "content": "Scheme:"
282
+ "variant": "caption"
231
283
  },
232
284
  {
233
285
  "type": "badge",
@@ -240,9 +292,14 @@
240
292
  "colorScheme"
241
293
  ]
242
294
  }
243
- ]
295
+ ],
296
+ "direction": "horizontal",
297
+ "type": "stack",
298
+ "gap": "md"
244
299
  }
245
- ]
300
+ ],
301
+ "direction": "vertical",
302
+ "type": "stack"
246
303
  }
247
304
  ]
248
305
  ]
@@ -256,25 +313,22 @@
256
313
  "render-ui",
257
314
  "main",
258
315
  {
259
- "type": "stack",
260
- "direction": "vertical",
261
- "gap": "lg",
262
316
  "children": [
263
317
  {
318
+ "align": "center",
264
319
  "type": "stack",
265
320
  "direction": "horizontal",
266
321
  "gap": "sm",
267
- "align": "center",
268
322
  "children": [
269
323
  {
270
- "type": "icon",
271
324
  "name": "palette",
272
- "size": "lg"
325
+ "size": "lg",
326
+ "type": "icon"
273
327
  },
274
328
  {
275
- "type": "typography",
329
+ "variant": "h2",
276
330
  "content": "Theme Settings",
277
- "variant": "h2"
331
+ "type": "typography"
278
332
  }
279
333
  ]
280
334
  },
@@ -282,12 +336,9 @@
282
336
  "type": "divider"
283
337
  },
284
338
  {
285
- "type": "card",
286
339
  "children": [
287
340
  {
288
341
  "type": "stack",
289
- "direction": "vertical",
290
- "gap": "md",
291
342
  "children": [
292
343
  {
293
344
  "type": "typography",
@@ -296,68 +347,68 @@
296
347
  },
297
348
  {
298
349
  "type": "typography",
299
- "variant": "caption",
300
350
  "color": "muted",
301
- "content": "Switch between light and dark mode"
351
+ "content": "Switch between light and dark mode",
352
+ "variant": "caption"
302
353
  },
303
354
  {
304
355
  "type": "theme-toggle"
305
356
  }
306
- ]
357
+ ],
358
+ "gap": "md",
359
+ "direction": "vertical"
307
360
  }
308
- ]
361
+ ],
362
+ "type": "card"
309
363
  },
310
364
  {
311
- "type": "card",
312
365
  "children": [
313
366
  {
314
- "type": "stack",
315
367
  "direction": "vertical",
316
368
  "gap": "md",
369
+ "type": "stack",
317
370
  "children": [
318
371
  {
319
- "type": "typography",
320
372
  "variant": "h4",
321
- "content": "Theme Palette"
373
+ "content": "Theme Palette",
374
+ "type": "typography"
322
375
  },
323
376
  {
377
+ "content": "Choose from available color schemes",
324
378
  "type": "typography",
325
379
  "variant": "caption",
326
- "color": "muted",
327
- "content": "Choose from available color schemes"
380
+ "color": "muted"
328
381
  },
329
382
  {
383
+ "columns": 3.0,
330
384
  "type": "simple-grid",
331
- "columns": 3,
332
385
  "children": [
333
386
  {
387
+ "variant": "secondary",
334
388
  "type": "button",
335
- "label": "Almadar",
336
389
  "event": "SELECT",
337
- "variant": "secondary"
390
+ "label": "Almadar"
338
391
  },
339
392
  {
340
- "type": "button",
341
- "label": "Ocean",
393
+ "variant": "secondary",
342
394
  "event": "SELECT",
343
- "variant": "secondary"
395
+ "label": "Ocean",
396
+ "type": "button"
344
397
  },
345
398
  {
346
- "type": "button",
347
399
  "label": "Forest",
400
+ "variant": "secondary",
348
401
  "event": "SELECT",
349
- "variant": "secondary"
402
+ "type": "button"
350
403
  }
351
404
  ]
352
405
  }
353
406
  ]
354
407
  }
355
- ]
408
+ ],
409
+ "type": "card"
356
410
  },
357
411
  {
358
- "type": "stack",
359
- "direction": "horizontal",
360
- "gap": "md",
361
412
  "children": [
362
413
  {
363
414
  "type": "typography",
@@ -381,7 +432,6 @@
381
432
  "content": "Scheme:"
382
433
  },
383
434
  {
384
- "type": "badge",
385
435
  "label": [
386
436
  "object/get",
387
437
  [
@@ -389,11 +439,18 @@
389
439
  "@entity"
390
440
  ],
391
441
  "colorScheme"
392
- ]
442
+ ],
443
+ "type": "badge"
393
444
  }
394
- ]
445
+ ],
446
+ "type": "stack",
447
+ "gap": "md",
448
+ "direction": "horizontal"
395
449
  }
396
- ]
450
+ ],
451
+ "gap": "lg",
452
+ "direction": "vertical",
453
+ "type": "stack"
397
454
  }
398
455
  ]
399
456
  ]
@@ -412,27 +469,26 @@
412
469
  "render-ui",
413
470
  "main",
414
471
  {
415
- "type": "stack",
416
- "direction": "vertical",
417
472
  "gap": "lg",
473
+ "direction": "vertical",
418
474
  "children": [
419
475
  {
420
- "type": "stack",
421
- "direction": "horizontal",
422
- "gap": "sm",
423
- "align": "center",
424
476
  "children": [
425
477
  {
426
- "type": "icon",
427
478
  "name": "palette",
479
+ "type": "icon",
428
480
  "size": "lg"
429
481
  },
430
482
  {
431
- "type": "typography",
432
483
  "content": "Theme Settings",
484
+ "type": "typography",
433
485
  "variant": "h2"
434
486
  }
435
- ]
487
+ ],
488
+ "type": "stack",
489
+ "direction": "horizontal",
490
+ "align": "center",
491
+ "gap": "sm"
436
492
  },
437
493
  {
438
494
  "type": "divider"
@@ -442,34 +498,31 @@
442
498
  "children": [
443
499
  {
444
500
  "type": "stack",
445
- "direction": "vertical",
446
- "gap": "md",
447
501
  "children": [
448
502
  {
449
503
  "type": "typography",
450
- "variant": "h4",
451
- "content": "Quick Toggle"
504
+ "content": "Quick Toggle",
505
+ "variant": "h4"
452
506
  },
453
507
  {
454
- "type": "typography",
455
508
  "variant": "caption",
456
509
  "color": "muted",
510
+ "type": "typography",
457
511
  "content": "Switch between light and dark mode"
458
512
  },
459
513
  {
460
514
  "type": "theme-toggle"
461
515
  }
462
- ]
516
+ ],
517
+ "gap": "md",
518
+ "direction": "vertical"
463
519
  }
464
520
  ]
465
521
  },
466
522
  {
467
- "type": "card",
468
523
  "children": [
469
524
  {
470
- "type": "stack",
471
525
  "direction": "vertical",
472
- "gap": "md",
473
526
  "children": [
474
527
  {
475
528
  "type": "typography",
@@ -477,19 +530,19 @@
477
530
  "content": "Theme Palette"
478
531
  },
479
532
  {
480
- "type": "typography",
481
533
  "variant": "caption",
482
- "color": "muted",
483
- "content": "Choose from available color schemes"
534
+ "content": "Choose from available color schemes",
535
+ "type": "typography",
536
+ "color": "muted"
484
537
  },
485
538
  {
486
539
  "type": "simple-grid",
487
- "columns": 3,
540
+ "columns": 3.0,
488
541
  "children": [
489
542
  {
490
543
  "type": "button",
491
- "label": "Almadar",
492
544
  "event": "SELECT",
545
+ "label": "Almadar",
493
546
  "variant": "secondary"
494
547
  },
495
548
  {
@@ -499,20 +552,21 @@
499
552
  "variant": "secondary"
500
553
  },
501
554
  {
502
- "type": "button",
503
- "label": "Forest",
504
555
  "event": "SELECT",
505
- "variant": "secondary"
556
+ "type": "button",
557
+ "variant": "secondary",
558
+ "label": "Forest"
506
559
  }
507
560
  ]
508
561
  }
509
- ]
562
+ ],
563
+ "type": "stack",
564
+ "gap": "md"
510
565
  }
511
- ]
566
+ ],
567
+ "type": "card"
512
568
  },
513
569
  {
514
- "type": "stack",
515
- "direction": "horizontal",
516
570
  "gap": "md",
517
571
  "children": [
518
572
  {
@@ -532,12 +586,11 @@
532
586
  ]
533
587
  },
534
588
  {
589
+ "content": "Scheme:",
535
590
  "type": "typography",
536
- "variant": "caption",
537
- "content": "Scheme:"
591
+ "variant": "caption"
538
592
  },
539
593
  {
540
- "type": "badge",
541
594
  "label": [
542
595
  "object/get",
543
596
  [
@@ -545,17 +598,22 @@
545
598
  "@entity"
546
599
  ],
547
600
  "colorScheme"
548
- ]
601
+ ],
602
+ "type": "badge"
549
603
  }
550
- ]
604
+ ],
605
+ "type": "stack",
606
+ "direction": "horizontal"
551
607
  }
552
- ]
608
+ ],
609
+ "type": "stack"
553
610
  }
554
611
  ]
555
612
  ]
556
613
  }
557
614
  ]
558
- }
615
+ },
616
+ "scope": "collection"
559
617
  }
560
618
  ],
561
619
  "pages": [
@@ -571,4 +629,4 @@
571
629
  ]
572
630
  }
573
631
  ]
574
- }
632
+ }