@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-text-effects",
3
3
  "version": "1.0.0",
4
- "description": "Text animation and highlighting atom. Absorbs: typewriter-text, text-highlight, law-reference-tooltip.",
4
+ "description": "std-text-effects as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "TextContentOrbital",
@@ -50,25 +50,65 @@
50
50
  "type": "string",
51
51
  "default": ""
52
52
  }
53
- ],
54
- "instances": [
55
- {
56
- "id": "txt-1",
57
- "name": "The quick brown fox jumps over the lazy dog",
58
- "description": "A pangram sentence",
59
- "status": "active",
60
- "createdAt": "2026-01-01",
61
- "content": "The **quick** brown fox _jumps_ over the lazy dog. This demonstrates text animation and highlighting capabilities.",
62
- "highlightType": "emphasis",
63
- "reference": "Article 42, Section 3.1 — Typography Standards"
64
- }
65
53
  ]
66
54
  },
67
55
  "traits": [
68
56
  {
69
57
  "name": "TextContentTextEffects",
70
- "linkedEntity": "TextContent",
71
58
  "category": "interaction",
59
+ "linkedEntity": "TextContent",
60
+ "emits": [
61
+ {
62
+ "event": "TextContentLoaded",
63
+ "description": "Fired when TextContent finishes loading",
64
+ "scope": "internal",
65
+ "payload": [
66
+ {
67
+ "name": "id",
68
+ "type": "string"
69
+ },
70
+ {
71
+ "name": "name",
72
+ "type": "string"
73
+ },
74
+ {
75
+ "name": "description",
76
+ "type": "string"
77
+ },
78
+ {
79
+ "name": "status",
80
+ "type": "string"
81
+ },
82
+ {
83
+ "name": "createdAt",
84
+ "type": "string"
85
+ },
86
+ {
87
+ "name": "content",
88
+ "type": "string"
89
+ },
90
+ {
91
+ "name": "highlightType",
92
+ "type": "string"
93
+ },
94
+ {
95
+ "name": "reference",
96
+ "type": "string"
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ "event": "TextContentLoadFailed",
102
+ "description": "Fired when TextContent fails to load",
103
+ "scope": "internal",
104
+ "payload": [
105
+ {
106
+ "name": "message",
107
+ "type": "string"
108
+ }
109
+ ]
110
+ }
111
+ ],
72
112
  "stateMachine": {
73
113
  "states": [
74
114
  {
@@ -98,6 +138,20 @@
98
138
  {
99
139
  "key": "RESET",
100
140
  "name": "Reset"
141
+ },
142
+ {
143
+ "key": "TextContentLoaded",
144
+ "name": "TextContent loaded"
145
+ },
146
+ {
147
+ "key": "TextContentLoadFailed",
148
+ "name": "TextContent load failed",
149
+ "payload": [
150
+ {
151
+ "name": "message",
152
+ "type": "string"
153
+ }
154
+ ]
101
155
  }
102
156
  ],
103
157
  "transitions": [
@@ -108,39 +162,43 @@
108
162
  "effects": [
109
163
  [
110
164
  "fetch",
111
- "TextContent"
165
+ "TextContent",
166
+ {
167
+ "emit": {
168
+ "failure": "TextContentLoadFailed",
169
+ "success": "TextContentLoaded"
170
+ }
171
+ }
112
172
  ],
113
173
  [
114
174
  "render-ui",
115
175
  "main",
116
176
  {
117
177
  "type": "stack",
118
- "direction": "vertical",
119
178
  "gap": "lg",
120
179
  "children": [
121
180
  {
122
181
  "type": "stack",
123
- "direction": "horizontal",
124
182
  "gap": "sm",
125
- "align": "center",
183
+ "direction": "horizontal",
126
184
  "children": [
127
185
  {
128
- "type": "icon",
186
+ "size": "lg",
129
187
  "name": "type",
130
- "size": "lg"
188
+ "type": "icon"
131
189
  },
132
190
  {
133
- "type": "typography",
134
191
  "content": "Text Effects",
135
- "variant": "h2"
192
+ "variant": "h2",
193
+ "type": "typography"
136
194
  }
137
- ]
195
+ ],
196
+ "align": "center"
138
197
  },
139
198
  {
140
199
  "type": "divider"
141
200
  },
142
201
  {
143
- "type": "markdown-content",
144
202
  "content": [
145
203
  "object/get",
146
204
  [
@@ -148,10 +206,10 @@
148
206
  "@entity"
149
207
  ],
150
208
  "name"
151
- ]
209
+ ],
210
+ "type": "markdown-content"
152
211
  },
153
212
  {
154
- "type": "code-block",
155
213
  "code": [
156
214
  "object/get",
157
215
  [
@@ -160,6 +218,7 @@
160
218
  ],
161
219
  "reference"
162
220
  ],
221
+ "type": "code-block",
163
222
  "language": "text"
164
223
  },
165
224
  {
@@ -176,27 +235,28 @@
176
235
  },
177
236
  {
178
237
  "type": "stack",
179
- "direction": "horizontal",
180
238
  "gap": "sm",
181
- "justify": "center",
182
239
  "children": [
183
240
  {
184
- "type": "button",
185
- "label": "Animate",
186
241
  "event": "ANIMATE",
242
+ "icon": "play",
243
+ "label": "Animate",
187
244
  "variant": "primary",
188
- "icon": "play"
245
+ "type": "button"
189
246
  },
190
247
  {
191
- "type": "button",
248
+ "icon": "highlighter",
192
249
  "label": "Highlight",
250
+ "type": "button",
193
251
  "event": "HIGHLIGHT",
194
- "variant": "secondary",
195
- "icon": "highlighter"
252
+ "variant": "secondary"
196
253
  }
197
- ]
254
+ ],
255
+ "direction": "horizontal",
256
+ "justify": "center"
198
257
  }
199
- ]
258
+ ],
259
+ "direction": "vertical"
200
260
  }
201
261
  ]
202
262
  ]
@@ -210,33 +270,35 @@
210
270
  "render-ui",
211
271
  "main",
212
272
  {
213
- "type": "stack",
214
- "direction": "vertical",
215
273
  "gap": "lg",
274
+ "direction": "vertical",
275
+ "type": "stack",
216
276
  "children": [
217
277
  {
218
- "type": "stack",
219
278
  "direction": "horizontal",
220
- "gap": "sm",
221
279
  "align": "center",
222
280
  "children": [
223
281
  {
224
282
  "type": "icon",
225
- "name": "type",
226
- "size": "lg"
283
+ "size": "lg",
284
+ "name": "type"
227
285
  },
228
286
  {
229
- "type": "typography",
287
+ "variant": "h2",
230
288
  "content": "Text Effects",
231
- "variant": "h2"
289
+ "type": "typography"
232
290
  }
233
- ]
291
+ ],
292
+ "type": "stack",
293
+ "gap": "sm"
234
294
  },
235
295
  {
236
296
  "type": "divider"
237
297
  },
238
298
  {
239
299
  "type": "typewriter-text",
300
+ "cursor": true,
301
+ "speed": 50.0,
240
302
  "text": [
241
303
  "object/get",
242
304
  [
@@ -244,12 +306,9 @@
244
306
  "@entity"
245
307
  ],
246
308
  "name"
247
- ],
248
- "speed": 50,
249
- "cursor": true
309
+ ]
250
310
  },
251
311
  {
252
- "type": "law-reference-tooltip",
253
312
  "reference": [
254
313
  "object/get",
255
314
  [
@@ -261,18 +320,19 @@
261
320
  "children": [
262
321
  {
263
322
  "type": "typography",
323
+ "content": "Hover for reference details",
264
324
  "variant": "caption",
265
- "color": "muted",
266
- "content": "Hover for reference details"
325
+ "color": "muted"
267
326
  }
268
- ]
327
+ ],
328
+ "type": "law-reference-tooltip"
269
329
  },
270
330
  {
271
331
  "type": "button",
272
- "label": "Highlight",
273
- "event": "HIGHLIGHT",
274
332
  "variant": "secondary",
275
- "icon": "highlighter"
333
+ "icon": "highlighter",
334
+ "label": "Highlight",
335
+ "event": "HIGHLIGHT"
276
336
  }
277
337
  ]
278
338
  }
@@ -280,7 +340,7 @@
280
340
  ]
281
341
  },
282
342
  {
283
- "from": "animating",
343
+ "from": "idle",
284
344
  "to": "highlighted",
285
345
  "event": "HIGHLIGHT",
286
346
  "effects": [
@@ -288,32 +348,33 @@
288
348
  "render-ui",
289
349
  "main",
290
350
  {
291
- "type": "stack",
292
351
  "direction": "vertical",
352
+ "type": "stack",
293
353
  "gap": "lg",
294
354
  "children": [
295
355
  {
296
- "type": "stack",
297
- "direction": "horizontal",
298
- "gap": "sm",
299
- "align": "center",
300
356
  "children": [
301
357
  {
358
+ "size": "lg",
302
359
  "type": "icon",
303
- "name": "type",
304
- "size": "lg"
360
+ "name": "type"
305
361
  },
306
362
  {
307
363
  "type": "typography",
308
364
  "content": "Text Effects",
309
365
  "variant": "h2"
310
366
  }
311
- ]
367
+ ],
368
+ "gap": "sm",
369
+ "direction": "horizontal",
370
+ "type": "stack",
371
+ "align": "center"
312
372
  },
313
373
  {
314
374
  "type": "divider"
315
375
  },
316
376
  {
377
+ "highlightColor": "yellow",
317
378
  "type": "text-highlight",
318
379
  "text": [
319
380
  "object/get",
@@ -323,23 +384,12 @@
323
384
  ],
324
385
  "name"
325
386
  ],
326
- "highlightColor": "yellow",
327
387
  "pattern": "important"
328
388
  },
329
389
  {
330
- "type": "law-reference-tooltip",
331
- "reference": [
332
- "object/get",
333
- [
334
- "array/first",
335
- "@entity"
336
- ],
337
- "reference"
338
- ],
339
390
  "children": [
340
391
  {
341
392
  "type": "typography",
342
- "variant": "body",
343
393
  "content": [
344
394
  "object/get",
345
395
  [
@@ -347,16 +397,26 @@
347
397
  "@entity"
348
398
  ],
349
399
  "name"
350
- ]
400
+ ],
401
+ "variant": "body"
351
402
  }
352
- ]
403
+ ],
404
+ "reference": [
405
+ "object/get",
406
+ [
407
+ "array/first",
408
+ "@entity"
409
+ ],
410
+ "reference"
411
+ ],
412
+ "type": "law-reference-tooltip"
353
413
  },
354
414
  {
355
- "type": "button",
356
415
  "label": "Reset",
357
- "event": "RESET",
358
416
  "variant": "ghost",
359
- "icon": "rotate-ccw"
417
+ "icon": "rotate-ccw",
418
+ "event": "RESET",
419
+ "type": "button"
360
420
  }
361
421
  ]
362
422
  }
@@ -364,23 +424,17 @@
364
424
  ]
365
425
  },
366
426
  {
367
- "from": "highlighted",
368
- "to": "idle",
369
- "event": "RESET",
427
+ "from": "animating",
428
+ "to": "highlighted",
429
+ "event": "HIGHLIGHT",
370
430
  "effects": [
371
431
  [
372
432
  "render-ui",
373
433
  "main",
374
434
  {
375
- "type": "stack",
376
- "direction": "vertical",
377
435
  "gap": "lg",
378
436
  "children": [
379
437
  {
380
- "type": "stack",
381
- "direction": "horizontal",
382
- "gap": "sm",
383
- "align": "center",
384
438
  "children": [
385
439
  {
386
440
  "type": "icon",
@@ -388,29 +442,34 @@
388
442
  "size": "lg"
389
443
  },
390
444
  {
391
- "type": "typography",
392
445
  "content": "Text Effects",
393
- "variant": "h2"
446
+ "variant": "h2",
447
+ "type": "typography"
394
448
  }
395
- ]
449
+ ],
450
+ "gap": "sm",
451
+ "direction": "horizontal",
452
+ "type": "stack",
453
+ "align": "center"
396
454
  },
397
455
  {
398
456
  "type": "divider"
399
457
  },
400
458
  {
401
- "type": "markdown-content",
402
- "content": [
459
+ "pattern": "important",
460
+ "type": "text-highlight",
461
+ "text": [
403
462
  "object/get",
404
463
  [
405
464
  "array/first",
406
465
  "@entity"
407
466
  ],
408
467
  "name"
409
- ]
468
+ ],
469
+ "highlightColor": "yellow"
410
470
  },
411
471
  {
412
- "type": "code-block",
413
- "code": [
472
+ "reference": [
414
473
  "object/get",
415
474
  [
416
475
  "array/first",
@@ -418,43 +477,32 @@
418
477
  ],
419
478
  "reference"
420
479
  ],
421
- "language": "text"
422
- },
423
- {
424
- "type": "typography",
425
- "variant": "body",
426
- "content": [
427
- "object/get",
428
- [
429
- "array/first",
430
- "@entity"
431
- ],
432
- "name"
433
- ]
434
- },
435
- {
436
- "type": "stack",
437
- "direction": "horizontal",
438
- "gap": "sm",
439
- "justify": "center",
480
+ "type": "law-reference-tooltip",
440
481
  "children": [
441
482
  {
442
- "type": "button",
443
- "label": "Animate",
444
- "event": "ANIMATE",
445
- "variant": "primary",
446
- "icon": "play"
447
- },
448
- {
449
- "type": "button",
450
- "label": "Highlight",
451
- "event": "HIGHLIGHT",
452
- "variant": "secondary",
453
- "icon": "highlighter"
483
+ "variant": "body",
484
+ "content": [
485
+ "object/get",
486
+ [
487
+ "array/first",
488
+ "@entity"
489
+ ],
490
+ "name"
491
+ ],
492
+ "type": "typography"
454
493
  }
455
494
  ]
495
+ },
496
+ {
497
+ "icon": "rotate-ccw",
498
+ "label": "Reset",
499
+ "type": "button",
500
+ "variant": "ghost",
501
+ "event": "RESET"
456
502
  }
457
- ]
503
+ ],
504
+ "direction": "vertical",
505
+ "type": "stack"
458
506
  }
459
507
  ]
460
508
  ]
@@ -468,33 +516,29 @@
468
516
  "render-ui",
469
517
  "main",
470
518
  {
471
- "type": "stack",
472
- "direction": "vertical",
473
- "gap": "lg",
474
519
  "children": [
475
520
  {
476
- "type": "stack",
477
- "direction": "horizontal",
478
- "gap": "sm",
479
521
  "align": "center",
480
522
  "children": [
481
523
  {
482
- "type": "icon",
483
524
  "name": "type",
484
- "size": "lg"
525
+ "size": "lg",
526
+ "type": "icon"
485
527
  },
486
528
  {
487
529
  "type": "typography",
488
530
  "content": "Text Effects",
489
531
  "variant": "h2"
490
532
  }
491
- ]
533
+ ],
534
+ "type": "stack",
535
+ "gap": "sm",
536
+ "direction": "horizontal"
492
537
  },
493
538
  {
494
539
  "type": "divider"
495
540
  },
496
541
  {
497
- "type": "markdown-content",
498
542
  "content": [
499
543
  "object/get",
500
544
  [
@@ -502,10 +546,10 @@
502
546
  "@entity"
503
547
  ],
504
548
  "name"
505
- ]
549
+ ],
550
+ "type": "markdown-content"
506
551
  },
507
552
  {
508
- "type": "code-block",
509
553
  "code": [
510
554
  "object/get",
511
555
  [
@@ -514,11 +558,12 @@
514
558
  ],
515
559
  "reference"
516
560
  ],
561
+ "type": "code-block",
517
562
  "language": "text"
518
563
  },
519
564
  {
520
- "type": "typography",
521
565
  "variant": "body",
566
+ "type": "typography",
522
567
  "content": [
523
568
  "object/get",
524
569
  [
@@ -529,60 +574,61 @@
529
574
  ]
530
575
  },
531
576
  {
532
- "type": "stack",
533
- "direction": "horizontal",
534
577
  "gap": "sm",
535
- "justify": "center",
578
+ "type": "stack",
536
579
  "children": [
537
580
  {
538
- "type": "button",
539
581
  "label": "Animate",
540
- "event": "ANIMATE",
541
582
  "variant": "primary",
583
+ "event": "ANIMATE",
584
+ "type": "button",
542
585
  "icon": "play"
543
586
  },
544
587
  {
545
- "type": "button",
546
- "label": "Highlight",
547
588
  "event": "HIGHLIGHT",
548
- "variant": "secondary",
549
- "icon": "highlighter"
589
+ "icon": "highlighter",
590
+ "label": "Highlight",
591
+ "type": "button",
592
+ "variant": "secondary"
550
593
  }
551
- ]
594
+ ],
595
+ "direction": "horizontal",
596
+ "justify": "center"
552
597
  }
553
- ]
598
+ ],
599
+ "gap": "lg",
600
+ "type": "stack",
601
+ "direction": "vertical"
554
602
  }
555
603
  ]
556
604
  ]
557
605
  },
558
606
  {
559
- "from": "idle",
560
- "to": "highlighted",
561
- "event": "HIGHLIGHT",
607
+ "from": "highlighted",
608
+ "to": "idle",
609
+ "event": "RESET",
562
610
  "effects": [
563
611
  [
564
612
  "render-ui",
565
613
  "main",
566
614
  {
567
- "type": "stack",
568
615
  "direction": "vertical",
569
- "gap": "lg",
570
616
  "children": [
571
617
  {
618
+ "align": "center",
572
619
  "type": "stack",
573
620
  "direction": "horizontal",
574
621
  "gap": "sm",
575
- "align": "center",
576
622
  "children": [
577
623
  {
578
- "type": "icon",
579
624
  "name": "type",
580
- "size": "lg"
625
+ "size": "lg",
626
+ "type": "icon"
581
627
  },
582
628
  {
583
- "type": "typography",
584
629
  "content": "Text Effects",
585
- "variant": "h2"
630
+ "variant": "h2",
631
+ "type": "typography"
586
632
  }
587
633
  ]
588
634
  },
@@ -590,8 +636,7 @@
590
636
  "type": "divider"
591
637
  },
592
638
  {
593
- "type": "text-highlight",
594
- "text": [
639
+ "content": [
595
640
  "object/get",
596
641
  [
597
642
  "array/first",
@@ -599,12 +644,11 @@
599
644
  ],
600
645
  "name"
601
646
  ],
602
- "highlightColor": "yellow",
603
- "pattern": "important"
647
+ "type": "markdown-content"
604
648
  },
605
649
  {
606
- "type": "law-reference-tooltip",
607
- "reference": [
650
+ "type": "code-block",
651
+ "code": [
608
652
  "object/get",
609
653
  [
610
654
  "array/first",
@@ -612,35 +656,52 @@
612
656
  ],
613
657
  "reference"
614
658
  ],
659
+ "language": "text"
660
+ },
661
+ {
662
+ "content": [
663
+ "object/get",
664
+ [
665
+ "array/first",
666
+ "@entity"
667
+ ],
668
+ "name"
669
+ ],
670
+ "type": "typography",
671
+ "variant": "body"
672
+ },
673
+ {
674
+ "gap": "sm",
615
675
  "children": [
616
676
  {
617
- "type": "typography",
618
- "variant": "body",
619
- "content": [
620
- "object/get",
621
- [
622
- "array/first",
623
- "@entity"
624
- ],
625
- "name"
626
- ]
677
+ "type": "button",
678
+ "icon": "play",
679
+ "variant": "primary",
680
+ "event": "ANIMATE",
681
+ "label": "Animate"
682
+ },
683
+ {
684
+ "label": "Highlight",
685
+ "event": "HIGHLIGHT",
686
+ "variant": "secondary",
687
+ "icon": "highlighter",
688
+ "type": "button"
627
689
  }
628
- ]
629
- },
630
- {
631
- "type": "button",
632
- "label": "Reset",
633
- "event": "RESET",
634
- "variant": "ghost",
635
- "icon": "rotate-ccw"
690
+ ],
691
+ "direction": "horizontal",
692
+ "type": "stack",
693
+ "justify": "center"
636
694
  }
637
- ]
695
+ ],
696
+ "gap": "lg",
697
+ "type": "stack"
638
698
  }
639
699
  ]
640
700
  ]
641
701
  }
642
702
  ]
643
- }
703
+ },
704
+ "scope": "instance"
644
705
  }
645
706
  ],
646
707
  "pages": [
@@ -656,4 +717,4 @@
656
717
  ]
657
718
  }
658
719
  ]
659
- }
720
+ }