@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
@@ -45,14 +45,8 @@
45
45
  "traits": [
46
46
  {
47
47
  "name": "ConfirmActionConfirmation",
48
- "linkedEntity": "ConfirmAction",
49
48
  "category": "interaction",
50
- "emits": [
51
- {
52
- "event": "CONFIRM",
53
- "scope": "external"
54
- }
55
- ],
49
+ "linkedEntity": "ConfirmAction",
56
50
  "stateMachine": {
57
51
  "states": [
58
52
  {
@@ -70,7 +64,7 @@
70
64
  },
71
65
  {
72
66
  "key": "REQUEST",
73
- "name": "Request Confirmation",
67
+ "name": "Request",
74
68
  "payload": [
75
69
  {
76
70
  "name": "id",
@@ -99,70 +93,8 @@
99
93
  "event": "INIT",
100
94
  "effects": [
101
95
  [
102
- "ref",
96
+ "fetch",
103
97
  "ConfirmAction"
104
- ],
105
- [
106
- "render-ui",
107
- "main",
108
- {
109
- "type": "stack",
110
- "direction": "vertical",
111
- "gap": "lg",
112
- "children": [
113
- {
114
- "type": "stack",
115
- "direction": "horizontal",
116
- "gap": "md",
117
- "align": "center",
118
- "children": [
119
- {
120
- "type": "icon",
121
- "name": "shield-check",
122
- "size": "lg"
123
- },
124
- {
125
- "type": "typography",
126
- "content": "ConfirmActions",
127
- "variant": "h2"
128
- }
129
- ]
130
- },
131
- {
132
- "type": "divider"
133
- },
134
- {
135
- "type": "data-grid",
136
- "entity": "ConfirmAction",
137
- "emptyIcon": "inbox",
138
- "emptyTitle": "No confirmactions yet",
139
- "emptyDescription": "Items will appear here.",
140
- "itemActions": [
141
- {
142
- "label": "Confirm Action",
143
- "event": "REQUEST",
144
- "variant": "danger"
145
- }
146
- ],
147
- "renderItem": [
148
- "fn",
149
- "item",
150
- {
151
- "type": "stack",
152
- "direction": "vertical",
153
- "gap": "sm",
154
- "children": [
155
- {
156
- "type": "typography",
157
- "variant": "h4",
158
- "content": "@item.name"
159
- }
160
- ]
161
- }
162
- ]
163
- }
164
- ]
165
- }
166
98
  ]
167
99
  ]
168
100
  },
@@ -176,69 +108,62 @@
176
108
  "@entity.pendingId",
177
109
  "@payload.id"
178
110
  ],
179
- [
180
- "fetch",
181
- "ConfirmAction",
182
- {
183
- "id": "@payload.id"
184
- }
185
- ],
186
111
  [
187
112
  "render-ui",
188
113
  "modal",
189
114
  {
190
- "type": "stack",
191
- "direction": "vertical",
192
- "gap": "md",
193
115
  "children": [
194
116
  {
195
- "type": "stack",
196
- "direction": "horizontal",
197
117
  "gap": "sm",
198
- "align": "center",
199
118
  "children": [
200
119
  {
201
- "type": "icon",
202
- "name": "alert-triangle",
203
- "size": "md"
120
+ "name": "@config.icon",
121
+ "size": "md",
122
+ "type": "icon"
204
123
  },
205
124
  {
206
125
  "type": "typography",
207
- "content": "Confirm Action",
126
+ "content": "@config.title",
208
127
  "variant": "h3"
209
128
  }
210
- ]
129
+ ],
130
+ "type": "stack",
131
+ "direction": "horizontal",
132
+ "align": "center"
211
133
  },
212
134
  {
213
135
  "type": "divider"
214
136
  },
215
137
  {
216
138
  "type": "alert",
217
- "variant": "danger",
218
- "message": "Are you sure?"
139
+ "message": "@config.alertMessage",
140
+ "variant": "danger"
219
141
  },
220
142
  {
221
- "type": "stack",
222
143
  "direction": "horizontal",
223
- "gap": "sm",
224
- "justify": "end",
225
144
  "children": [
226
145
  {
227
146
  "type": "button",
228
- "label": "Cancel",
229
147
  "event": "CANCEL",
148
+ "label": "Cancel",
230
149
  "variant": "ghost"
231
150
  },
232
151
  {
152
+ "icon": "check",
233
153
  "type": "button",
234
- "label": "Confirm",
235
- "event": "CONFIRM",
236
154
  "variant": "danger",
237
- "icon": "check"
155
+ "event": "CONFIRM",
156
+ "label": "@config.confirmLabel"
238
157
  }
239
- ]
158
+ ],
159
+ "justify": "end",
160
+ "type": "stack",
161
+ "gap": "sm"
240
162
  }
241
- ]
163
+ ],
164
+ "type": "stack",
165
+ "direction": "vertical",
166
+ "gap": "md"
242
167
  }
243
168
  ]
244
169
  ]
@@ -252,72 +177,6 @@
252
177
  "render-ui",
253
178
  "modal",
254
179
  null
255
- ],
256
- [
257
- "ref",
258
- "ConfirmAction"
259
- ],
260
- [
261
- "render-ui",
262
- "main",
263
- {
264
- "type": "stack",
265
- "direction": "vertical",
266
- "gap": "lg",
267
- "children": [
268
- {
269
- "type": "stack",
270
- "direction": "horizontal",
271
- "gap": "md",
272
- "align": "center",
273
- "children": [
274
- {
275
- "type": "icon",
276
- "name": "shield-check",
277
- "size": "lg"
278
- },
279
- {
280
- "type": "typography",
281
- "content": "ConfirmActions",
282
- "variant": "h2"
283
- }
284
- ]
285
- },
286
- {
287
- "type": "divider"
288
- },
289
- {
290
- "type": "data-grid",
291
- "entity": "ConfirmAction",
292
- "emptyIcon": "inbox",
293
- "emptyTitle": "No confirmactions yet",
294
- "emptyDescription": "Items will appear here.",
295
- "itemActions": [
296
- {
297
- "label": "Confirm Action",
298
- "event": "REQUEST",
299
- "variant": "danger"
300
- }
301
- ],
302
- "renderItem": [
303
- "fn",
304
- "item",
305
- {
306
- "type": "stack",
307
- "direction": "vertical",
308
- "gap": "sm",
309
- "children": [
310
- {
311
- "type": "typography",
312
- "variant": "h4",
313
- "content": "@item.name"
314
- }
315
- ]
316
- }
317
- ]
318
- }
319
- ]
320
- }
321
180
  ]
322
181
  ]
323
182
  },
@@ -330,72 +189,6 @@
330
189
  "render-ui",
331
190
  "modal",
332
191
  null
333
- ],
334
- [
335
- "ref",
336
- "ConfirmAction"
337
- ],
338
- [
339
- "render-ui",
340
- "main",
341
- {
342
- "type": "stack",
343
- "direction": "vertical",
344
- "gap": "lg",
345
- "children": [
346
- {
347
- "type": "stack",
348
- "direction": "horizontal",
349
- "gap": "md",
350
- "align": "center",
351
- "children": [
352
- {
353
- "type": "icon",
354
- "name": "shield-check",
355
- "size": "lg"
356
- },
357
- {
358
- "type": "typography",
359
- "content": "ConfirmActions",
360
- "variant": "h2"
361
- }
362
- ]
363
- },
364
- {
365
- "type": "divider"
366
- },
367
- {
368
- "type": "data-grid",
369
- "entity": "ConfirmAction",
370
- "emptyIcon": "inbox",
371
- "emptyTitle": "No confirmactions yet",
372
- "emptyDescription": "Items will appear here.",
373
- "itemActions": [
374
- {
375
- "label": "Confirm Action",
376
- "event": "REQUEST",
377
- "variant": "danger"
378
- }
379
- ],
380
- "renderItem": [
381
- "fn",
382
- "item",
383
- {
384
- "type": "stack",
385
- "direction": "vertical",
386
- "gap": "sm",
387
- "children": [
388
- {
389
- "type": "typography",
390
- "variant": "h4",
391
- "content": "@item.name"
392
- }
393
- ]
394
- }
395
- ]
396
- }
397
- ]
398
- }
399
192
  ]
400
193
  ]
401
194
  },
@@ -408,77 +201,12 @@
408
201
  "render-ui",
409
202
  "modal",
410
203
  null
411
- ],
412
- [
413
- "ref",
414
- "ConfirmAction"
415
- ],
416
- [
417
- "render-ui",
418
- "main",
419
- {
420
- "type": "stack",
421
- "direction": "vertical",
422
- "gap": "lg",
423
- "children": [
424
- {
425
- "type": "stack",
426
- "direction": "horizontal",
427
- "gap": "md",
428
- "align": "center",
429
- "children": [
430
- {
431
- "type": "icon",
432
- "name": "shield-check",
433
- "size": "lg"
434
- },
435
- {
436
- "type": "typography",
437
- "content": "ConfirmActions",
438
- "variant": "h2"
439
- }
440
- ]
441
- },
442
- {
443
- "type": "divider"
444
- },
445
- {
446
- "type": "data-grid",
447
- "entity": "ConfirmAction",
448
- "emptyIcon": "inbox",
449
- "emptyTitle": "No confirmactions yet",
450
- "emptyDescription": "Items will appear here.",
451
- "itemActions": [
452
- {
453
- "label": "Confirm Action",
454
- "event": "REQUEST",
455
- "variant": "danger"
456
- }
457
- ],
458
- "renderItem": [
459
- "fn",
460
- "item",
461
- {
462
- "type": "stack",
463
- "direction": "vertical",
464
- "gap": "sm",
465
- "children": [
466
- {
467
- "type": "typography",
468
- "variant": "h4",
469
- "content": "@item.name"
470
- }
471
- ]
472
- }
473
- ]
474
- }
475
- ]
476
- }
477
204
  ]
478
205
  ]
479
206
  }
480
207
  ]
481
- }
208
+ },
209
+ "scope": "instance"
482
210
  }
483
211
  ],
484
212
  "pages": [
@@ -494,4 +222,4 @@
494
222
  ]
495
223
  }
496
224
  ]
497
- }
225
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "std-dialogue-box",
3
3
  "version": "1.0.0",
4
- "description": "RPG dialogue atom using the `dialogue-box` pattern. Shows speaker, portrait, typewriter text, and choices.",
4
+ "description": "std-dialogue-box as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "DialogueNodeOrbital",
@@ -50,8 +50,56 @@
50
50
  "traits": [
51
51
  {
52
52
  "name": "DialogueNodeDialogue",
53
- "linkedEntity": "DialogueNode",
54
53
  "category": "interaction",
54
+ "linkedEntity": "DialogueNode",
55
+ "emits": [
56
+ {
57
+ "event": "DialogueNodeLoaded",
58
+ "description": "Fired when DialogueNode 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": "speaker",
83
+ "type": "string"
84
+ },
85
+ {
86
+ "name": "text",
87
+ "type": "string"
88
+ }
89
+ ]
90
+ },
91
+ {
92
+ "event": "DialogueNodeLoadFailed",
93
+ "description": "Fired when DialogueNode fails to load",
94
+ "scope": "internal",
95
+ "payload": [
96
+ {
97
+ "name": "message",
98
+ "type": "string"
99
+ }
100
+ ]
101
+ }
102
+ ],
55
103
  "stateMachine": {
56
104
  "states": [
57
105
  {
@@ -89,6 +137,20 @@
89
137
  {
90
138
  "key": "START_DIALOGUE",
91
139
  "name": "Start Dialogue"
140
+ },
141
+ {
142
+ "key": "DialogueNodeLoaded",
143
+ "name": "DialogueNode loaded"
144
+ },
145
+ {
146
+ "key": "DialogueNodeLoadFailed",
147
+ "name": "DialogueNode load failed",
148
+ "payload": [
149
+ {
150
+ "name": "message",
151
+ "type": "string"
152
+ }
153
+ ]
92
154
  }
93
155
  ],
94
156
  "transitions": [
@@ -99,7 +161,13 @@
99
161
  "effects": [
100
162
  [
101
163
  "fetch",
102
- "DialogueNode"
164
+ "DialogueNode",
165
+ {
166
+ "emit": {
167
+ "failure": "DialogueNodeLoadFailed",
168
+ "success": "DialogueNodeLoaded"
169
+ }
170
+ }
103
171
  ],
104
172
  [
105
173
  "set",
@@ -115,12 +183,12 @@
115
183
  "render-ui",
116
184
  "main",
117
185
  {
118
- "type": "dialogue-box",
119
186
  "dialogue": {
120
- "speaker": "@entity.speaker",
121
- "text": "@entity.text"
187
+ "text": "@entity.text",
188
+ "speaker": "@entity.speaker"
122
189
  },
123
- "typewriterSpeed": 30,
190
+ "type": "dialogue-box",
191
+ "typewriterSpeed": 30.0,
124
192
  "position": "bottom"
125
193
  }
126
194
  ]
@@ -133,19 +201,25 @@
133
201
  "effects": [
134
202
  [
135
203
  "fetch",
136
- "DialogueNode"
204
+ "DialogueNode",
205
+ {
206
+ "emit": {
207
+ "success": "DialogueNodeLoaded",
208
+ "failure": "DialogueNodeLoadFailed"
209
+ }
210
+ }
137
211
  ],
138
212
  [
139
213
  "render-ui",
140
214
  "main",
141
215
  {
216
+ "position": "bottom",
217
+ "typewriterSpeed": 30.0,
142
218
  "type": "dialogue-box",
143
219
  "dialogue": {
144
- "speaker": "@entity.speaker",
145
- "text": "@entity.text"
146
- },
147
- "typewriterSpeed": 30,
148
- "position": "bottom"
220
+ "text": "@entity.text",
221
+ "speaker": "@entity.speaker"
222
+ }
149
223
  }
150
224
  ]
151
225
  ]
@@ -159,13 +233,13 @@
159
233
  "render-ui",
160
234
  "main",
161
235
  {
162
- "type": "dialogue-box",
163
236
  "dialogue": {
164
237
  "speaker": "@entity.speaker",
165
238
  "text": "@entity.text"
166
239
  },
167
- "typewriterSpeed": 30,
168
- "position": "bottom"
240
+ "typewriterSpeed": 30.0,
241
+ "position": "bottom",
242
+ "type": "dialogue-box"
169
243
  }
170
244
  ]
171
245
  ]
@@ -181,22 +255,22 @@
181
255
  {
182
256
  "type": "stack",
183
257
  "direction": "vertical",
184
- "gap": "md",
185
258
  "align": "center",
186
259
  "children": [
187
260
  {
261
+ "variant": "caption",
188
262
  "type": "typography",
189
- "content": "Dialogue complete",
190
- "variant": "caption"
263
+ "content": "Dialogue complete"
191
264
  },
192
265
  {
193
- "type": "button",
194
- "label": "New Dialogue",
195
- "event": "START_DIALOGUE",
266
+ "icon": "message-circle",
196
267
  "variant": "primary",
197
- "icon": "message-circle"
268
+ "event": "START_DIALOGUE",
269
+ "type": "button",
270
+ "label": "New Dialogue"
198
271
  }
199
- ]
272
+ ],
273
+ "gap": "md"
200
274
  }
201
275
  ]
202
276
  ]
@@ -208,25 +282,32 @@
208
282
  "effects": [
209
283
  [
210
284
  "fetch",
211
- "DialogueNode"
285
+ "DialogueNode",
286
+ {
287
+ "emit": {
288
+ "failure": "DialogueNodeLoadFailed",
289
+ "success": "DialogueNodeLoaded"
290
+ }
291
+ }
212
292
  ],
213
293
  [
214
294
  "render-ui",
215
295
  "main",
216
296
  {
217
- "type": "dialogue-box",
218
297
  "dialogue": {
219
298
  "speaker": "@entity.speaker",
220
299
  "text": "@entity.text"
221
300
  },
222
- "typewriterSpeed": 30,
223
- "position": "bottom"
301
+ "position": "bottom",
302
+ "type": "dialogue-box",
303
+ "typewriterSpeed": 30.0
224
304
  }
225
305
  ]
226
306
  ]
227
307
  }
228
308
  ]
229
- }
309
+ },
310
+ "scope": "instance"
230
311
  }
231
312
  ],
232
313
  "pages": [
@@ -242,4 +323,4 @@
242
323
  ]
243
324
  }
244
325
  ]
245
- }
326
+ }