@almadar/std 7.0.0 → 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 +501 -224
  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 +232 -135
  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 +26 -373
  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 +309 -325
  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 +29 -331
  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 +170 -35
  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 +164 -29
  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 +263 -137
  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 +326 -462
  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 +132 -137
  94. package/behaviors/registry/molecules/std-drawer-master-list.orb +10 -5
  95. package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  96. package/behaviors/registry/molecules/std-filtered-list.orb +12 -7
  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 +58 -8
  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 +501 -224
  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 +232 -135
  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 +26 -373
  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 +309 -325
  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 +29 -331
  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 +170 -35
  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 +164 -29
  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 +263 -137
  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 +326 -462
  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 +132 -137
  243. package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +10 -5
  244. package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  245. package/dist/behaviors/registry/molecules/std-filtered-list.orb +12 -7
  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 +58 -8
  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 +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "std-browse",
3
3
  "version": "1.0.0",
4
- "description": "Data grid browsing atom. Renders a list of entities with configurable item actions. The browsing view that molecules compose with modal/confirmation atoms.",
4
+ "description": "std-browse as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "BrowseItemOrbital",
@@ -35,113 +35,64 @@
35
35
  "name": "createdAt",
36
36
  "type": "string"
37
37
  }
38
- ],
39
- "instances": [
40
- {
41
- "id": "bi-1",
42
- "name": "Terry Schultz",
43
- "description": "Senior product designer with 8 years of experience",
44
- "status": "active",
45
- "createdAt": "2026-01-15"
46
- },
47
- {
48
- "id": "bi-2",
49
- "name": "Dale Franey",
50
- "description": "Full-stack developer specializing in React and Node.js",
51
- "status": "active",
52
- "createdAt": "2026-01-18"
53
- },
54
- {
55
- "id": "bi-3",
56
- "name": "Lorena Mayer",
57
- "description": "Data analyst focused on business intelligence",
58
- "status": "pending",
59
- "createdAt": "2026-01-20"
60
- },
61
- {
62
- "id": "bi-4",
63
- "name": "Andrea Paucek",
64
- "description": "Project manager with PMP certification",
65
- "status": "active",
66
- "createdAt": "2026-02-01"
67
- },
68
- {
69
- "id": "bi-5",
70
- "name": "Geneva Durgan",
71
- "description": "UX researcher conducting user interviews",
72
- "status": "inactive",
73
- "createdAt": "2026-02-05"
74
- },
75
- {
76
- "id": "bi-6",
77
- "name": "Samantha Okuneva",
78
- "description": "DevOps engineer managing cloud infrastructure",
79
- "status": "active",
80
- "createdAt": "2026-02-10"
81
- },
82
- {
83
- "id": "bi-7",
84
- "name": "Nelson Halby",
85
- "description": "Technical writer documenting APIs",
86
- "status": "active",
87
- "createdAt": "2026-02-15"
88
- },
89
- {
90
- "id": "bi-8",
91
- "name": "Tanya Hand",
92
- "description": "QA lead overseeing test automation",
93
- "status": "pending",
94
- "createdAt": "2026-02-20"
95
- },
96
- {
97
- "id": "bi-9",
98
- "name": "Rosemary Lind",
99
- "description": "Marketing analyst tracking campaign performance",
100
- "status": "active",
101
- "createdAt": "2026-03-01"
102
- },
103
- {
104
- "id": "bi-10",
105
- "name": "Bernadette Anderson",
106
- "description": "Security engineer conducting penetration tests",
107
- "status": "active",
108
- "createdAt": "2026-03-05"
109
- }
110
38
  ]
111
39
  },
112
40
  "traits": [
113
41
  {
114
42
  "name": "BrowseItemBrowse",
115
- "linkedEntity": "BrowseItem",
116
43
  "category": "interaction",
117
- "scope": "collection",
44
+ "linkedEntity": "BrowseItem",
118
45
  "emits": [
119
46
  {
120
47
  "event": "BrowseItemLoaded",
121
- "scope": "internal",
122
48
  "description": "Fired when the BrowseItem collection finishes loading",
49
+ "scope": "internal",
123
50
  "payload": [
124
- { "name": "id", "type": "string" },
125
- { "name": "name", "type": "string" },
126
- { "name": "description", "type": "string" },
127
- { "name": "status", "type": "string" },
128
- { "name": "createdAt", "type": "string" }
51
+ {
52
+ "name": "id",
53
+ "type": "string"
54
+ },
55
+ {
56
+ "name": "name",
57
+ "type": "string"
58
+ },
59
+ {
60
+ "name": "description",
61
+ "type": "string"
62
+ },
63
+ {
64
+ "name": "status",
65
+ "type": "string"
66
+ },
67
+ {
68
+ "name": "createdAt",
69
+ "type": "string"
70
+ }
129
71
  ]
130
72
  },
131
73
  {
132
74
  "event": "BrowseItemLoadFailed",
133
- "scope": "internal",
134
75
  "description": "Fired when the BrowseItem collection fails to load",
76
+ "scope": "internal",
135
77
  "payload": [
136
- { "name": "message", "type": "string" }
78
+ {
79
+ "name": "message",
80
+ "type": "string"
81
+ }
137
82
  ]
138
83
  }
139
84
  ],
140
85
  "stateMachine": {
141
86
  "states": [
142
87
  {
143
- "name": "browsing",
88
+ "name": "loading",
144
89
  "isInitial": true
90
+ },
91
+ {
92
+ "name": "browsing"
93
+ },
94
+ {
95
+ "name": "error"
145
96
  }
146
97
  ],
147
98
  "events": [
@@ -151,17 +102,23 @@
151
102
  },
152
103
  {
153
104
  "key": "BrowseItemLoaded",
154
- "name": "Browse items loaded"
105
+ "name": "BrowseItem loaded"
155
106
  },
156
107
  {
157
108
  "key": "BrowseItemLoadFailed",
158
- "name": "Browse items load failed"
109
+ "name": "BrowseItem load failed",
110
+ "payload": [
111
+ {
112
+ "name": "message",
113
+ "type": "string"
114
+ }
115
+ ]
159
116
  }
160
117
  ],
161
118
  "transitions": [
162
119
  {
163
- "from": "browsing",
164
- "to": "browsing",
120
+ "from": "loading",
121
+ "to": "loading",
165
122
  "event": "INIT",
166
123
  "effects": [
167
124
  [
@@ -178,32 +135,59 @@
178
135
  "render-ui",
179
136
  "main",
180
137
  {
181
- "type": "stack",
138
+ "className": "max-w-5xl mx-auto w-full py-12",
139
+ "children": [
140
+ {
141
+ "type": "spinner",
142
+ "size": "lg"
143
+ },
144
+ {
145
+ "type": "typography",
146
+ "content": "Loading BrowseItems…",
147
+ "variant": "caption",
148
+ "color": "muted"
149
+ }
150
+ ],
182
151
  "direction": "vertical",
152
+ "align": "center",
183
153
  "gap": "lg",
184
- "className": "max-w-5xl mx-auto w-full",
154
+ "type": "stack"
155
+ }
156
+ ]
157
+ ]
158
+ },
159
+ {
160
+ "from": "loading",
161
+ "to": "browsing",
162
+ "event": "BrowseItemLoaded",
163
+ "effects": [
164
+ [
165
+ "render-ui",
166
+ "main",
167
+ {
168
+ "type": "stack",
185
169
  "children": [
186
170
  {
187
171
  "type": "stack",
172
+ "justify": "space-between",
188
173
  "direction": "horizontal",
189
174
  "gap": "md",
190
- "justify": "space-between",
191
175
  "align": "center",
192
176
  "children": [
193
177
  {
194
- "type": "stack",
195
178
  "direction": "horizontal",
196
- "gap": "sm",
197
179
  "align": "center",
180
+ "gap": "sm",
181
+ "type": "stack",
198
182
  "children": [
199
183
  {
200
- "type": "icon",
201
184
  "name": "list",
185
+ "type": "icon",
202
186
  "size": "lg"
203
187
  },
204
188
  {
205
- "type": "typography",
206
189
  "content": "BrowseItems",
190
+ "type": "typography",
207
191
  "variant": "h2"
208
192
  }
209
193
  ]
@@ -213,74 +197,187 @@
213
197
  {
214
198
  "type": "divider"
215
199
  },
216
- {
217
- "type": "pull-to-refresh",
218
- "event": "REFRESH"
219
- },
220
- {
221
- "type": "swipeable-row",
222
- "leadingAction": {
223
- "label": "Edit",
224
- "event": "EDIT"
225
- },
226
- "trailingAction": {
227
- "label": "Delete",
228
- "event": "DELETE"
229
- }
230
- },
231
200
  {
232
201
  "type": "data-grid",
233
- "entity": "BrowseItem",
234
- "emptyIcon": "inbox",
235
- "emptyTitle": "No browseitems yet",
236
202
  "emptyDescription": "Create your first browseitem to get started.",
237
203
  "columns": [
238
204
  {
239
205
  "name": "name",
206
+ "icon": "list",
240
207
  "label": "Name",
241
- "variant": "h4",
242
- "icon": "list"
208
+ "variant": "h4"
243
209
  },
244
210
  {
245
211
  "name": "description",
246
- "label": "Description",
247
- "variant": "badge",
248
212
  "colorMap": {
213
+ "disabled": "neutral",
214
+ "error": "destructive",
215
+ "cancelled": "destructive",
249
216
  "active": "success",
217
+ "inactive": "neutral",
218
+ "archived": "neutral",
250
219
  "completed": "success",
251
- "done": "success",
252
- "pending": "warning",
253
220
  "draft": "warning",
221
+ "failed": "destructive",
222
+ "done": "success",
254
223
  "scheduled": "warning",
255
- "inactive": "neutral",
256
- "archived": "neutral",
257
- "disabled": "neutral",
258
- "error": "destructive",
259
- "cancelled": "destructive",
260
- "failed": "destructive"
261
- }
224
+ "pending": "warning"
225
+ },
226
+ "label": "Description",
227
+ "variant": "badge"
262
228
  },
263
229
  {
230
+ "variant": "caption",
264
231
  "name": "status",
265
- "label": "Status",
266
- "variant": "caption"
232
+ "label": "Status"
267
233
  }
268
- ]
234
+ ],
235
+ "entity": "BrowseItem",
236
+ "emptyTitle": "No browseitems yet",
237
+ "emptyIcon": "inbox"
269
238
  },
270
239
  {
271
- "type": "floating-action-button",
272
240
  "icon": "plus",
241
+ "tooltip": "Create",
242
+ "type": "floating-action-button",
243
+ "event": "INIT",
244
+ "label": "Create"
245
+ }
246
+ ],
247
+ "className": "max-w-5xl mx-auto w-full",
248
+ "gap": "lg",
249
+ "direction": "vertical"
250
+ }
251
+ ]
252
+ ]
253
+ },
254
+ {
255
+ "from": "loading",
256
+ "to": "error",
257
+ "event": "BrowseItemLoadFailed",
258
+ "effects": [
259
+ [
260
+ "render-ui",
261
+ "main",
262
+ {
263
+ "className": "max-w-5xl mx-auto w-full py-12",
264
+ "children": [
265
+ {
266
+ "type": "icon",
267
+ "name": "alert-triangle",
268
+ "size": "xl",
269
+ "color": "destructive"
270
+ },
271
+ {
272
+ "type": "typography",
273
+ "content": "Failed to load BrowseItems",
274
+ "variant": "h3"
275
+ },
276
+ {
277
+ "content": "@payload.message",
278
+ "variant": "body",
279
+ "type": "typography",
280
+ "color": "muted"
281
+ },
282
+ {
283
+ "label": "Retry",
284
+ "icon": "rotate-ccw",
273
285
  "event": "INIT",
274
- "label": "Create",
275
- "tooltip": "Create"
286
+ "variant": "primary",
287
+ "type": "button"
288
+ }
289
+ ],
290
+ "type": "stack",
291
+ "align": "center",
292
+ "direction": "vertical",
293
+ "gap": "md"
294
+ }
295
+ ]
296
+ ]
297
+ },
298
+ {
299
+ "from": "browsing",
300
+ "to": "loading",
301
+ "event": "INIT",
302
+ "effects": [
303
+ [
304
+ "fetch",
305
+ "BrowseItem",
306
+ {
307
+ "emit": {
308
+ "success": "BrowseItemLoaded",
309
+ "failure": "BrowseItemLoadFailed"
310
+ }
311
+ }
312
+ ],
313
+ [
314
+ "render-ui",
315
+ "main",
316
+ {
317
+ "gap": "lg",
318
+ "className": "max-w-5xl mx-auto w-full py-12",
319
+ "children": [
320
+ {
321
+ "type": "spinner",
322
+ "size": "lg"
323
+ },
324
+ {
325
+ "type": "typography",
326
+ "content": "Refreshing…",
327
+ "color": "muted",
328
+ "variant": "caption"
329
+ }
330
+ ],
331
+ "direction": "vertical",
332
+ "align": "center",
333
+ "type": "stack"
334
+ }
335
+ ]
336
+ ]
337
+ },
338
+ {
339
+ "from": "error",
340
+ "to": "loading",
341
+ "event": "INIT",
342
+ "effects": [
343
+ [
344
+ "fetch",
345
+ "BrowseItem",
346
+ {
347
+ "emit": {
348
+ "failure": "BrowseItemLoadFailed",
349
+ "success": "BrowseItemLoaded"
350
+ }
351
+ }
352
+ ],
353
+ [
354
+ "render-ui",
355
+ "main",
356
+ {
357
+ "children": [
358
+ {
359
+ "type": "spinner",
360
+ "size": "lg"
361
+ },
362
+ {
363
+ "color": "muted",
364
+ "type": "typography",
365
+ "variant": "caption",
366
+ "content": "Retrying…"
276
367
  }
277
- ]
368
+ ],
369
+ "type": "stack",
370
+ "gap": "lg",
371
+ "align": "center",
372
+ "direction": "vertical",
373
+ "className": "max-w-5xl mx-auto w-full py-12"
278
374
  }
279
375
  ]
280
376
  ]
281
377
  }
282
378
  ]
283
- }
379
+ },
380
+ "scope": "collection"
284
381
  }
285
382
  ],
286
383
  "pages": [
@@ -296,4 +393,4 @@
296
393
  ]
297
394
  }
298
395
  ]
299
- }
396
+ }