@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-flip-card",
3
3
  "version": "1.0.0",
4
- "description": "Flip card atom for flashcard-style front/back content. Absorbs: flip-container, flip-card.",
4
+ "description": "std-flip-card as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "FlashcardOrbital",
@@ -45,42 +45,61 @@
45
45
  "type": "string",
46
46
  "default": ""
47
47
  }
48
- ],
49
- "instances": [
50
- {
51
- "id": "fc-1",
52
- "name": "What is photosynthesis?",
53
- "description": "The process by which plants convert sunlight into energy",
54
- "status": "active",
55
- "createdAt": "2026-01-01",
56
- "question": "What is photosynthesis?",
57
- "answer": "The process by which green plants use sunlight to synthesize foods from carbon dioxide and water."
58
- },
59
- {
60
- "id": "fc-2",
61
- "name": "What is the speed of light?",
62
- "description": "299,792,458 meters per second",
63
- "status": "active",
64
- "createdAt": "2026-01-02",
65
- "question": "What is the speed of light?",
66
- "answer": "Approximately 299,792,458 meters per second in a vacuum."
67
- },
68
- {
69
- "id": "fc-3",
70
- "name": "What is DNA?",
71
- "description": "Deoxyribonucleic acid",
72
- "status": "active",
73
- "createdAt": "2026-01-03",
74
- "question": "What is DNA?",
75
- "answer": "Deoxyribonucleic acid, the molecule that carries genetic instructions for life."
76
- }
77
48
  ]
78
49
  },
79
50
  "traits": [
80
51
  {
81
52
  "name": "FlashcardFlipCard",
82
- "linkedEntity": "Flashcard",
83
53
  "category": "interaction",
54
+ "linkedEntity": "Flashcard",
55
+ "emits": [
56
+ {
57
+ "event": "FlashcardLoaded",
58
+ "description": "Fired when Flashcard 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": "question",
83
+ "type": "string"
84
+ },
85
+ {
86
+ "name": "answer",
87
+ "type": "string"
88
+ }
89
+ ]
90
+ },
91
+ {
92
+ "event": "FlashcardLoadFailed",
93
+ "description": "Fired when Flashcard fails to load",
94
+ "scope": "internal",
95
+ "payload": [
96
+ {
97
+ "name": "message",
98
+ "type": "string"
99
+ }
100
+ ]
101
+ }
102
+ ],
84
103
  "stateMachine": {
85
104
  "states": [
86
105
  {
@@ -98,7 +117,7 @@
98
117
  },
99
118
  {
100
119
  "key": "FLIP",
101
- "name": "Flip Card"
120
+ "name": "Flip"
102
121
  },
103
122
  {
104
123
  "key": "FLIP_BACK",
@@ -106,7 +125,21 @@
106
125
  },
107
126
  {
108
127
  "key": "NEXT",
109
- "name": "Next Card"
128
+ "name": "Next"
129
+ },
130
+ {
131
+ "key": "FlashcardLoaded",
132
+ "name": "Flashcard loaded"
133
+ },
134
+ {
135
+ "key": "FlashcardLoadFailed",
136
+ "name": "Flashcard load failed",
137
+ "payload": [
138
+ {
139
+ "name": "message",
140
+ "type": "string"
141
+ }
142
+ ]
110
143
  }
111
144
  ],
112
145
  "transitions": [
@@ -117,7 +150,13 @@
117
150
  "effects": [
118
151
  [
119
152
  "fetch",
120
- "Flashcard"
153
+ "Flashcard",
154
+ {
155
+ "emit": {
156
+ "success": "FlashcardLoaded",
157
+ "failure": "FlashcardLoadFailed"
158
+ }
159
+ }
121
160
  ],
122
161
  [
123
162
  "render-ui",
@@ -125,42 +164,42 @@
125
164
  {
126
165
  "type": "stack",
127
166
  "direction": "vertical",
128
- "gap": "lg",
129
167
  "align": "center",
168
+ "gap": "lg",
130
169
  "children": [
131
170
  {
132
171
  "type": "stack",
133
172
  "direction": "horizontal",
134
- "gap": "sm",
135
173
  "align": "center",
136
174
  "children": [
137
175
  {
176
+ "size": "lg",
138
177
  "type": "icon",
139
- "name": "rotate-3d",
140
- "size": "lg"
178
+ "name": "rotate-3d"
141
179
  },
142
180
  {
143
- "type": "typography",
181
+ "variant": "h2",
144
182
  "content": "Flashcards Flashcards",
145
- "variant": "h2"
183
+ "type": "typography"
146
184
  }
147
- ]
185
+ ],
186
+ "gap": "sm"
148
187
  },
149
188
  {
150
189
  "type": "divider"
151
190
  },
152
191
  {
153
192
  "type": "flip-card",
154
- "front": {
193
+ "back": {
155
194
  "type": "stack",
156
- "direction": "vertical",
157
195
  "gap": "md",
196
+ "direction": "vertical",
158
197
  "align": "center",
159
198
  "children": [
160
199
  {
161
- "type": "icon",
162
- "name": "help-circle",
163
- "size": "lg"
200
+ "name": "lightbulb",
201
+ "size": "lg",
202
+ "type": "icon"
164
203
  },
165
204
  {
166
205
  "type": "typography",
@@ -171,54 +210,54 @@
171
210
  "array/first",
172
211
  "@entity"
173
212
  ],
174
- "name"
213
+ "description"
175
214
  ]
176
215
  },
177
216
  {
178
- "type": "typography",
179
- "variant": "caption",
180
- "color": "muted",
181
- "content": "Tap to reveal answer"
217
+ "label": "Answer",
218
+ "type": "badge"
182
219
  }
183
220
  ]
184
221
  },
185
- "back": {
186
- "type": "stack",
187
- "direction": "vertical",
222
+ "front": {
188
223
  "gap": "md",
189
- "align": "center",
190
224
  "children": [
191
225
  {
192
226
  "type": "icon",
193
- "name": "lightbulb",
227
+ "name": "help-circle",
194
228
  "size": "lg"
195
229
  },
196
230
  {
197
231
  "type": "typography",
198
- "variant": "h3",
199
232
  "content": [
200
233
  "object/get",
201
234
  [
202
235
  "array/first",
203
236
  "@entity"
204
237
  ],
205
- "description"
206
- ]
238
+ "name"
239
+ ],
240
+ "variant": "h3"
207
241
  },
208
242
  {
209
- "type": "badge",
210
- "label": "Answer"
243
+ "variant": "caption",
244
+ "content": "Tap to reveal answer",
245
+ "type": "typography",
246
+ "color": "muted"
211
247
  }
212
- ]
248
+ ],
249
+ "type": "stack",
250
+ "align": "center",
251
+ "direction": "vertical"
213
252
  },
214
253
  "flipped": false
215
254
  },
216
255
  {
217
256
  "type": "button",
218
- "label": "Flip",
219
- "event": "FLIP",
257
+ "icon": "rotate-3d",
220
258
  "variant": "primary",
221
- "icon": "rotate-3d"
259
+ "event": "FLIP",
260
+ "label": "Flip"
222
261
  }
223
262
  ]
224
263
  }
@@ -234,25 +273,23 @@
234
273
  "render-ui",
235
274
  "main",
236
275
  {
237
- "type": "stack",
238
276
  "direction": "vertical",
239
- "gap": "lg",
240
277
  "align": "center",
241
278
  "children": [
242
279
  {
243
- "type": "stack",
244
- "direction": "horizontal",
245
280
  "gap": "sm",
246
281
  "align": "center",
282
+ "type": "stack",
283
+ "direction": "horizontal",
247
284
  "children": [
248
285
  {
249
286
  "type": "icon",
250
- "name": "rotate-3d",
251
- "size": "lg"
287
+ "size": "lg",
288
+ "name": "rotate-3d"
252
289
  },
253
290
  {
254
- "type": "typography",
255
291
  "content": "Flashcards Flashcards",
292
+ "type": "typography",
256
293
  "variant": "h2"
257
294
  }
258
295
  ]
@@ -261,20 +298,16 @@
261
298
  "type": "divider"
262
299
  },
263
300
  {
264
- "type": "flip-card",
265
- "front": {
266
- "type": "stack",
267
- "direction": "vertical",
268
- "gap": "md",
301
+ "back": {
269
302
  "align": "center",
303
+ "type": "stack",
270
304
  "children": [
271
305
  {
272
306
  "type": "icon",
273
- "name": "help-circle",
274
- "size": "lg"
307
+ "size": "lg",
308
+ "name": "lightbulb"
275
309
  },
276
310
  {
277
- "type": "typography",
278
311
  "variant": "h3",
279
312
  "content": [
280
313
  "object/get",
@@ -282,27 +315,29 @@
282
315
  "array/first",
283
316
  "@entity"
284
317
  ],
285
- "name"
286
- ]
318
+ "description"
319
+ ],
320
+ "type": "typography"
287
321
  },
288
322
  {
289
- "type": "typography",
290
- "variant": "caption",
291
- "color": "muted",
292
- "content": "Tap to reveal answer"
323
+ "label": "Answer",
324
+ "type": "badge"
293
325
  }
294
- ]
295
- },
296
- "back": {
297
- "type": "stack",
298
- "direction": "vertical",
326
+ ],
299
327
  "gap": "md",
328
+ "direction": "vertical"
329
+ },
330
+ "flipped": true,
331
+ "type": "flip-card",
332
+ "front": {
300
333
  "align": "center",
334
+ "gap": "md",
335
+ "type": "stack",
301
336
  "children": [
302
337
  {
303
- "type": "icon",
304
- "name": "lightbulb",
305
- "size": "lg"
338
+ "size": "lg",
339
+ "name": "help-circle",
340
+ "type": "icon"
306
341
  },
307
342
  {
308
343
  "type": "typography",
@@ -313,40 +348,44 @@
313
348
  "array/first",
314
349
  "@entity"
315
350
  ],
316
- "description"
351
+ "name"
317
352
  ]
318
353
  },
319
354
  {
320
- "type": "badge",
321
- "label": "Answer"
355
+ "variant": "caption",
356
+ "type": "typography",
357
+ "content": "Tap to reveal answer",
358
+ "color": "muted"
322
359
  }
323
- ]
324
- },
325
- "flipped": true
360
+ ],
361
+ "direction": "vertical"
362
+ }
326
363
  },
327
364
  {
365
+ "gap": "sm",
328
366
  "type": "stack",
329
367
  "direction": "horizontal",
330
- "gap": "sm",
331
- "justify": "center",
332
368
  "children": [
333
369
  {
334
- "type": "button",
335
370
  "label": "Flip Back",
336
- "event": "FLIP_BACK",
371
+ "type": "button",
337
372
  "variant": "ghost",
373
+ "event": "FLIP_BACK",
338
374
  "icon": "rotate-3d"
339
375
  },
340
376
  {
341
377
  "type": "button",
342
- "label": "Next",
343
378
  "event": "NEXT",
379
+ "icon": "arrow-right",
344
380
  "variant": "primary",
345
- "icon": "arrow-right"
381
+ "label": "Next"
346
382
  }
347
- ]
383
+ ],
384
+ "justify": "center"
348
385
  }
349
- ]
386
+ ],
387
+ "gap": "lg",
388
+ "type": "stack"
350
389
  }
351
390
  ]
352
391
  ]
@@ -361,25 +400,22 @@
361
400
  "main",
362
401
  {
363
402
  "type": "stack",
364
- "direction": "vertical",
365
- "gap": "lg",
366
- "align": "center",
367
403
  "children": [
368
404
  {
405
+ "gap": "sm",
369
406
  "type": "stack",
370
407
  "direction": "horizontal",
371
- "gap": "sm",
372
408
  "align": "center",
373
409
  "children": [
374
410
  {
375
- "type": "icon",
376
411
  "name": "rotate-3d",
377
- "size": "lg"
412
+ "size": "lg",
413
+ "type": "icon"
378
414
  },
379
415
  {
416
+ "variant": "h2",
380
417
  "type": "typography",
381
- "content": "Flashcards Flashcards",
382
- "variant": "h2"
418
+ "content": "Flashcards Flashcards"
383
419
  }
384
420
  ]
385
421
  },
@@ -388,15 +424,15 @@
388
424
  },
389
425
  {
390
426
  "type": "flip-card",
391
- "front": {
392
- "type": "stack",
393
- "direction": "vertical",
427
+ "back": {
394
428
  "gap": "md",
429
+ "direction": "vertical",
430
+ "type": "stack",
395
431
  "align": "center",
396
432
  "children": [
397
433
  {
434
+ "name": "lightbulb",
398
435
  "type": "icon",
399
- "name": "help-circle",
400
436
  "size": "lg"
401
437
  },
402
438
  {
@@ -408,56 +444,59 @@
408
444
  "array/first",
409
445
  "@entity"
410
446
  ],
411
- "name"
447
+ "description"
412
448
  ]
413
449
  },
414
450
  {
415
- "type": "typography",
416
- "variant": "caption",
417
- "color": "muted",
418
- "content": "Tap to reveal answer"
451
+ "label": "Answer",
452
+ "type": "badge"
419
453
  }
420
454
  ]
421
455
  },
422
- "back": {
423
- "type": "stack",
424
- "direction": "vertical",
456
+ "flipped": false,
457
+ "front": {
425
458
  "gap": "md",
426
- "align": "center",
427
459
  "children": [
428
460
  {
429
- "type": "icon",
430
- "name": "lightbulb",
431
- "size": "lg"
461
+ "size": "lg",
462
+ "name": "help-circle",
463
+ "type": "icon"
432
464
  },
433
465
  {
434
466
  "type": "typography",
435
- "variant": "h3",
436
467
  "content": [
437
468
  "object/get",
438
469
  [
439
470
  "array/first",
440
471
  "@entity"
441
472
  ],
442
- "description"
443
- ]
473
+ "name"
474
+ ],
475
+ "variant": "h3"
444
476
  },
445
477
  {
446
- "type": "badge",
447
- "label": "Answer"
478
+ "type": "typography",
479
+ "color": "muted",
480
+ "variant": "caption",
481
+ "content": "Tap to reveal answer"
448
482
  }
449
- ]
450
- },
451
- "flipped": false
483
+ ],
484
+ "type": "stack",
485
+ "direction": "vertical",
486
+ "align": "center"
487
+ }
452
488
  },
453
489
  {
454
- "type": "button",
455
490
  "label": "Flip",
456
491
  "event": "FLIP",
492
+ "type": "button",
457
493
  "variant": "primary",
458
494
  "icon": "rotate-3d"
459
495
  }
460
- ]
496
+ ],
497
+ "align": "center",
498
+ "direction": "vertical",
499
+ "gap": "lg"
461
500
  }
462
501
  ]
463
502
  ]
@@ -469,107 +508,113 @@
469
508
  "effects": [
470
509
  [
471
510
  "fetch",
472
- "Flashcard"
511
+ "Flashcard",
512
+ {
513
+ "emit": {
514
+ "failure": "FlashcardLoadFailed",
515
+ "success": "FlashcardLoaded"
516
+ }
517
+ }
473
518
  ],
474
519
  [
475
520
  "render-ui",
476
521
  "main",
477
522
  {
478
- "type": "stack",
479
523
  "direction": "vertical",
480
524
  "gap": "lg",
525
+ "type": "stack",
481
526
  "align": "center",
482
527
  "children": [
483
528
  {
484
529
  "type": "stack",
485
- "direction": "horizontal",
486
- "gap": "sm",
487
530
  "align": "center",
488
531
  "children": [
489
532
  {
490
- "type": "icon",
491
533
  "name": "rotate-3d",
534
+ "type": "icon",
492
535
  "size": "lg"
493
536
  },
494
537
  {
495
- "type": "typography",
496
538
  "content": "Flashcards Flashcards",
539
+ "type": "typography",
497
540
  "variant": "h2"
498
541
  }
499
- ]
542
+ ],
543
+ "direction": "horizontal",
544
+ "gap": "sm"
500
545
  },
501
546
  {
502
547
  "type": "divider"
503
548
  },
504
549
  {
505
550
  "type": "flip-card",
506
- "front": {
551
+ "back": {
507
552
  "type": "stack",
508
553
  "direction": "vertical",
509
- "gap": "md",
510
- "align": "center",
511
554
  "children": [
512
555
  {
513
556
  "type": "icon",
514
- "name": "help-circle",
557
+ "name": "lightbulb",
515
558
  "size": "lg"
516
559
  },
517
560
  {
518
- "type": "typography",
519
- "variant": "h3",
520
561
  "content": [
521
562
  "object/get",
522
563
  [
523
564
  "array/first",
524
565
  "@entity"
525
566
  ],
526
- "name"
527
- ]
567
+ "description"
568
+ ],
569
+ "variant": "h3",
570
+ "type": "typography"
528
571
  },
529
572
  {
530
- "type": "typography",
531
- "variant": "caption",
532
- "color": "muted",
533
- "content": "Tap to reveal answer"
573
+ "type": "badge",
574
+ "label": "Answer"
534
575
  }
535
- ]
576
+ ],
577
+ "gap": "md",
578
+ "align": "center"
536
579
  },
537
- "back": {
538
- "type": "stack",
539
- "direction": "vertical",
580
+ "front": {
540
581
  "gap": "md",
541
- "align": "center",
542
582
  "children": [
543
583
  {
544
584
  "type": "icon",
545
- "name": "lightbulb",
585
+ "name": "help-circle",
546
586
  "size": "lg"
547
587
  },
548
588
  {
549
589
  "type": "typography",
550
- "variant": "h3",
551
590
  "content": [
552
591
  "object/get",
553
592
  [
554
593
  "array/first",
555
594
  "@entity"
556
595
  ],
557
- "description"
558
- ]
596
+ "name"
597
+ ],
598
+ "variant": "h3"
559
599
  },
560
600
  {
561
- "type": "badge",
562
- "label": "Answer"
601
+ "type": "typography",
602
+ "color": "muted",
603
+ "content": "Tap to reveal answer",
604
+ "variant": "caption"
563
605
  }
564
- ]
606
+ ],
607
+ "direction": "vertical",
608
+ "align": "center",
609
+ "type": "stack"
565
610
  },
566
611
  "flipped": false
567
612
  },
568
613
  {
614
+ "variant": "primary",
615
+ "event": "FLIP",
569
616
  "type": "button",
570
617
  "label": "Flip",
571
- "event": "FLIP",
572
- "variant": "primary",
573
618
  "icon": "rotate-3d"
574
619
  }
575
620
  ]
@@ -578,7 +623,8 @@
578
623
  ]
579
624
  }
580
625
  ]
581
- }
626
+ },
627
+ "scope": "instance"
582
628
  }
583
629
  ],
584
630
  "pages": [
@@ -594,4 +640,4 @@
594
640
  ]
595
641
  }
596
642
  ]
597
- }
643
+ }