@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-logic-training",
3
3
  "version": "1.0.0",
4
- "description": "Logic training organism. Composes: stdDebuggerGame(DebugChallenge) + stdNegotiatorGame(NegotiateChallenge) + stdScoreBoard(TrainingScore)",
4
+ "description": "std-logic-training as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "DebugChallengeOrbital",
@@ -26,7 +26,7 @@
26
26
  {
27
27
  "name": "score",
28
28
  "type": "number",
29
- "default": 0
29
+ "default": 0.0
30
30
  },
31
31
  {
32
32
  "name": "solved",
@@ -36,25 +36,61 @@
36
36
  {
37
37
  "name": "level",
38
38
  "type": "number",
39
- "default": 1
40
- }
41
- ],
42
- "instances": [
43
- {
44
- "id": "game-1",
45
- "name": "Debug Session",
46
- "description": "Active game session",
47
- "status": "active",
48
- "score": 0,
49
- "level": 1
39
+ "default": 1.0
50
40
  }
51
41
  ]
52
42
  },
53
43
  "traits": [
54
44
  {
55
45
  "name": "DebugChallengeDebuggerGame",
56
- "linkedEntity": "DebugChallenge",
57
46
  "category": "interaction",
47
+ "linkedEntity": "DebugChallenge",
48
+ "emits": [
49
+ {
50
+ "event": "DebugChallengeLoaded",
51
+ "description": "Fired when DebugChallenge finishes loading",
52
+ "scope": "internal",
53
+ "payload": [
54
+ {
55
+ "name": "id",
56
+ "type": "string",
57
+ "required": true
58
+ },
59
+ {
60
+ "name": "title",
61
+ "type": "string",
62
+ "required": true
63
+ },
64
+ {
65
+ "name": "bugType",
66
+ "type": "string"
67
+ },
68
+ {
69
+ "name": "score",
70
+ "type": "number"
71
+ },
72
+ {
73
+ "name": "solved",
74
+ "type": "boolean"
75
+ },
76
+ {
77
+ "name": "level",
78
+ "type": "number"
79
+ }
80
+ ]
81
+ },
82
+ {
83
+ "event": "DebugChallengeLoadFailed",
84
+ "description": "Fired when DebugChallenge fails to load",
85
+ "scope": "internal",
86
+ "payload": [
87
+ {
88
+ "name": "message",
89
+ "type": "string"
90
+ }
91
+ ]
92
+ }
93
+ ],
58
94
  "stateMachine": {
59
95
  "states": [
60
96
  {
@@ -77,6 +113,10 @@
77
113
  "key": "START",
78
114
  "name": "Start"
79
115
  },
116
+ {
117
+ "key": "NAVIGATE",
118
+ "name": "Navigate"
119
+ },
80
120
  {
81
121
  "key": "COMPLETE",
82
122
  "name": "Complete"
@@ -86,8 +126,18 @@
86
126
  "name": "Restart"
87
127
  },
88
128
  {
89
- "key": "NAVIGATE",
90
- "name": "Navigate"
129
+ "key": "DebugChallengeLoaded",
130
+ "name": "DebugChallenge loaded"
131
+ },
132
+ {
133
+ "key": "DebugChallengeLoadFailed",
134
+ "name": "DebugChallenge load failed",
135
+ "payload": [
136
+ {
137
+ "name": "message",
138
+ "type": "string"
139
+ }
140
+ ]
91
141
  }
92
142
  ],
93
143
  "transitions": [
@@ -98,28 +148,34 @@
98
148
  "effects": [
99
149
  [
100
150
  "fetch",
101
- "DebugChallenge"
151
+ "DebugChallenge",
152
+ {
153
+ "emit": {
154
+ "failure": "DebugChallengeLoadFailed",
155
+ "success": "DebugChallengeLoaded"
156
+ }
157
+ }
102
158
  ],
103
159
  [
104
160
  "render-ui",
105
161
  "main",
106
162
  {
107
- "type": "game-shell",
108
- "appName": "Logic Training",
109
163
  "showTopBar": true,
110
164
  "children": [
111
165
  {
112
- "type": "game-menu",
113
- "title": "Debug Challenge",
114
166
  "menuItems": [
115
167
  {
168
+ "variant": "primary",
116
169
  "label": "Start",
117
- "event": "START",
118
- "variant": "primary"
170
+ "event": "START"
119
171
  }
120
- ]
172
+ ],
173
+ "type": "game-menu",
174
+ "title": "Debug Challenge"
121
175
  }
122
- ]
176
+ ],
177
+ "appName": "Logic Training",
178
+ "type": "game-shell"
123
179
  }
124
180
  ]
125
181
  ]
@@ -134,13 +190,9 @@
134
190
  "main",
135
191
  {
136
192
  "type": "game-shell",
137
- "appName": "Logic Training",
138
193
  "showTopBar": true,
139
194
  "children": [
140
195
  {
141
- "type": "stack",
142
- "direction": "vertical",
143
- "gap": "md",
144
196
  "children": [
145
197
  {
146
198
  "type": "game-hud",
@@ -157,12 +209,16 @@
157
209
  },
158
210
  {
159
211
  "type": "debugger-board",
160
- "entity": "DebugChallenge",
161
- "completeEvent": "COMPLETE"
212
+ "completeEvent": "COMPLETE",
213
+ "entity": "DebugChallenge"
162
214
  }
163
- ]
215
+ ],
216
+ "type": "stack",
217
+ "gap": "md",
218
+ "direction": "vertical"
164
219
  }
165
- ]
220
+ ],
221
+ "appName": "Logic Training"
166
222
  }
167
223
  ]
168
224
  ]
@@ -170,8 +226,7 @@
170
226
  {
171
227
  "from": "menu",
172
228
  "to": "menu",
173
- "event": "NAVIGATE",
174
- "effects": []
229
+ "event": "NAVIGATE"
175
230
  },
176
231
  {
177
232
  "from": "playing",
@@ -183,19 +238,19 @@
183
238
  "main",
184
239
  {
185
240
  "type": "game-shell",
186
- "appName": "Logic Training",
187
241
  "showTopBar": true,
242
+ "appName": "Logic Training",
188
243
  "children": [
189
244
  {
190
- "type": "game-over-screen",
191
245
  "title": "Well Done!",
192
246
  "menuItems": [
193
247
  {
194
- "label": "Play Again",
195
248
  "event": "RESTART",
196
- "variant": "primary"
249
+ "variant": "primary",
250
+ "label": "Play Again"
197
251
  }
198
- ]
252
+ ],
253
+ "type": "game-over-screen"
199
254
  }
200
255
  ]
201
256
  }
@@ -211,35 +266,35 @@
211
266
  "render-ui",
212
267
  "main",
213
268
  {
214
- "type": "game-shell",
215
269
  "appName": "Logic Training",
216
270
  "showTopBar": true,
217
271
  "children": [
218
272
  {
219
- "type": "game-menu",
220
273
  "title": "Debug Challenge",
221
274
  "menuItems": [
222
275
  {
223
- "label": "Start",
276
+ "variant": "primary",
224
277
  "event": "START",
225
- "variant": "primary"
278
+ "label": "Start"
226
279
  }
227
- ]
280
+ ],
281
+ "type": "game-menu"
228
282
  }
229
- ]
283
+ ],
284
+ "type": "game-shell"
230
285
  }
231
286
  ]
232
287
  ]
233
288
  }
234
289
  ]
235
- }
290
+ },
291
+ "scope": "instance"
236
292
  }
237
293
  ],
238
294
  "pages": [
239
295
  {
240
296
  "name": "DebuggerPage",
241
297
  "path": "/debugger",
242
- "isInitial": true,
243
298
  "traits": [
244
299
  {
245
300
  "ref": "DebugChallengeDebuggerGame"
@@ -271,7 +326,7 @@
271
326
  {
272
327
  "name": "score",
273
328
  "type": "number",
274
- "default": 0
329
+ "default": 0.0
275
330
  },
276
331
  {
277
332
  "name": "outcome",
@@ -280,25 +335,61 @@
280
335
  {
281
336
  "name": "level",
282
337
  "type": "number",
283
- "default": 1
284
- }
285
- ],
286
- "instances": [
287
- {
288
- "id": "game-1",
289
- "name": "Negotiation Session",
290
- "description": "Active game session",
291
- "status": "active",
292
- "score": 0,
293
- "level": 1
338
+ "default": 1.0
294
339
  }
295
340
  ]
296
341
  },
297
342
  "traits": [
298
343
  {
299
344
  "name": "NegotiateChallengeNegotiatorGame",
300
- "linkedEntity": "NegotiateChallenge",
301
345
  "category": "interaction",
346
+ "linkedEntity": "NegotiateChallenge",
347
+ "emits": [
348
+ {
349
+ "event": "NegotiateChallengeLoaded",
350
+ "description": "Fired when NegotiateChallenge finishes loading",
351
+ "scope": "internal",
352
+ "payload": [
353
+ {
354
+ "name": "id",
355
+ "type": "string",
356
+ "required": true
357
+ },
358
+ {
359
+ "name": "title",
360
+ "type": "string",
361
+ "required": true
362
+ },
363
+ {
364
+ "name": "scenario",
365
+ "type": "string"
366
+ },
367
+ {
368
+ "name": "score",
369
+ "type": "number"
370
+ },
371
+ {
372
+ "name": "outcome",
373
+ "type": "string"
374
+ },
375
+ {
376
+ "name": "level",
377
+ "type": "number"
378
+ }
379
+ ]
380
+ },
381
+ {
382
+ "event": "NegotiateChallengeLoadFailed",
383
+ "description": "Fired when NegotiateChallenge fails to load",
384
+ "scope": "internal",
385
+ "payload": [
386
+ {
387
+ "name": "message",
388
+ "type": "string"
389
+ }
390
+ ]
391
+ }
392
+ ],
302
393
  "stateMachine": {
303
394
  "states": [
304
395
  {
@@ -321,6 +412,10 @@
321
412
  "key": "START",
322
413
  "name": "Start"
323
414
  },
415
+ {
416
+ "key": "NAVIGATE",
417
+ "name": "Navigate"
418
+ },
324
419
  {
325
420
  "key": "COMPLETE",
326
421
  "name": "Complete"
@@ -330,8 +425,18 @@
330
425
  "name": "Restart"
331
426
  },
332
427
  {
333
- "key": "NAVIGATE",
334
- "name": "Navigate"
428
+ "key": "NegotiateChallengeLoaded",
429
+ "name": "NegotiateChallenge loaded"
430
+ },
431
+ {
432
+ "key": "NegotiateChallengeLoadFailed",
433
+ "name": "NegotiateChallenge load failed",
434
+ "payload": [
435
+ {
436
+ "name": "message",
437
+ "type": "string"
438
+ }
439
+ ]
335
440
  }
336
441
  ],
337
442
  "transitions": [
@@ -342,26 +447,32 @@
342
447
  "effects": [
343
448
  [
344
449
  "fetch",
345
- "NegotiateChallenge"
450
+ "NegotiateChallenge",
451
+ {
452
+ "emit": {
453
+ "failure": "NegotiateChallengeLoadFailed",
454
+ "success": "NegotiateChallengeLoaded"
455
+ }
456
+ }
346
457
  ],
347
458
  [
348
459
  "render-ui",
349
460
  "main",
350
461
  {
351
- "type": "game-shell",
352
462
  "appName": "Logic Training",
353
463
  "showTopBar": true,
464
+ "type": "game-shell",
354
465
  "children": [
355
466
  {
356
467
  "type": "game-menu",
357
- "title": "Negotiate Challenge",
358
468
  "menuItems": [
359
469
  {
360
- "label": "Start",
470
+ "variant": "primary",
361
471
  "event": "START",
362
- "variant": "primary"
472
+ "label": "Start"
363
473
  }
364
- ]
474
+ ],
475
+ "title": "Negotiate Challenge"
365
476
  }
366
477
  ]
367
478
  }
@@ -377,36 +488,36 @@
377
488
  "render-ui",
378
489
  "main",
379
490
  {
380
- "type": "game-shell",
381
491
  "appName": "Logic Training",
382
492
  "showTopBar": true,
383
493
  "children": [
384
494
  {
385
495
  "type": "stack",
386
496
  "direction": "vertical",
387
- "gap": "md",
388
497
  "children": [
389
498
  {
390
- "type": "game-hud",
391
499
  "stats": [
392
500
  {
393
- "label": "Score",
394
- "value": "@entity.score"
501
+ "value": "@entity.score",
502
+ "label": "Score"
395
503
  },
396
504
  {
397
- "label": "Level",
398
- "value": "@entity.level"
505
+ "value": "@entity.level",
506
+ "label": "Level"
399
507
  }
400
- ]
508
+ ],
509
+ "type": "game-hud"
401
510
  },
402
511
  {
403
512
  "type": "negotiator-board",
404
513
  "entity": "NegotiateChallenge",
405
514
  "completeEvent": "COMPLETE"
406
515
  }
407
- ]
516
+ ],
517
+ "gap": "md"
408
518
  }
409
- ]
519
+ ],
520
+ "type": "game-shell"
410
521
  }
411
522
  ]
412
523
  ]
@@ -414,8 +525,7 @@
414
525
  {
415
526
  "from": "menu",
416
527
  "to": "menu",
417
- "event": "NAVIGATE",
418
- "effects": []
528
+ "event": "NAVIGATE"
419
529
  },
420
530
  {
421
531
  "from": "playing",
@@ -426,12 +536,10 @@
426
536
  "render-ui",
427
537
  "main",
428
538
  {
429
- "type": "game-shell",
430
539
  "appName": "Logic Training",
431
540
  "showTopBar": true,
432
541
  "children": [
433
542
  {
434
- "type": "game-over-screen",
435
543
  "title": "Well Done!",
436
544
  "menuItems": [
437
545
  {
@@ -439,9 +547,11 @@
439
547
  "event": "RESTART",
440
548
  "variant": "primary"
441
549
  }
442
- ]
550
+ ],
551
+ "type": "game-over-screen"
443
552
  }
444
- ]
553
+ ],
554
+ "type": "game-shell"
445
555
  }
446
556
  ]
447
557
  ]
@@ -456,11 +566,9 @@
456
566
  "main",
457
567
  {
458
568
  "type": "game-shell",
459
- "appName": "Logic Training",
460
569
  "showTopBar": true,
461
570
  "children": [
462
571
  {
463
- "type": "game-menu",
464
572
  "title": "Negotiate Challenge",
465
573
  "menuItems": [
466
574
  {
@@ -468,20 +576,23 @@
468
576
  "event": "START",
469
577
  "variant": "primary"
470
578
  }
471
- ]
579
+ ],
580
+ "type": "game-menu"
472
581
  }
473
- ]
582
+ ],
583
+ "appName": "Logic Training"
474
584
  }
475
585
  ]
476
586
  ]
477
587
  }
478
588
  ]
479
- }
589
+ },
590
+ "scope": "instance"
480
591
  }
481
592
  ],
482
593
  "pages": [
483
594
  {
484
- "name": "NegotiatorPage",
595
+ "name": "Negotiator",
485
596
  "path": "/negotiator",
486
597
  "traits": [
487
598
  {
@@ -510,7 +621,8 @@
510
621
  {
511
622
  "name": "score",
512
623
  "type": "number",
513
- "required": true
624
+ "required": true,
625
+ "default": 0.0
514
626
  },
515
627
  {
516
628
  "name": "category",
@@ -522,31 +634,87 @@
522
634
  },
523
635
  {
524
636
  "name": "highScore",
525
- "type": "number",
526
- "default": 0
637
+ "type": "number"
527
638
  },
528
639
  {
529
640
  "name": "combo",
530
- "type": "number",
531
- "default": 0
641
+ "type": "number"
532
642
  },
533
643
  {
534
644
  "name": "multiplier",
535
- "type": "number",
536
- "default": 1
645
+ "type": "number"
537
646
  },
538
647
  {
539
648
  "name": "level",
540
649
  "type": "number",
541
- "default": 1
650
+ "default": 1.0
542
651
  }
543
652
  ]
544
653
  },
545
654
  "traits": [
546
655
  {
547
656
  "name": "TrainingScoreScoreBoard",
548
- "linkedEntity": "TrainingScore",
549
657
  "category": "interaction",
658
+ "linkedEntity": "TrainingScore",
659
+ "emits": [
660
+ {
661
+ "event": "TrainingScoreLoaded",
662
+ "description": "Fired when TrainingScore finishes loading",
663
+ "scope": "internal",
664
+ "payload": [
665
+ {
666
+ "name": "id",
667
+ "type": "string",
668
+ "required": true
669
+ },
670
+ {
671
+ "name": "playerName",
672
+ "type": "string",
673
+ "required": true
674
+ },
675
+ {
676
+ "name": "score",
677
+ "type": "number",
678
+ "required": true
679
+ },
680
+ {
681
+ "name": "category",
682
+ "type": "string"
683
+ },
684
+ {
685
+ "name": "completedAt",
686
+ "type": "string"
687
+ },
688
+ {
689
+ "name": "highScore",
690
+ "type": "number"
691
+ },
692
+ {
693
+ "name": "combo",
694
+ "type": "number"
695
+ },
696
+ {
697
+ "name": "multiplier",
698
+ "type": "number"
699
+ },
700
+ {
701
+ "name": "level",
702
+ "type": "number"
703
+ }
704
+ ]
705
+ },
706
+ {
707
+ "event": "TrainingScoreLoadFailed",
708
+ "description": "Fired when TrainingScore fails to load",
709
+ "scope": "internal",
710
+ "payload": [
711
+ {
712
+ "name": "message",
713
+ "type": "string"
714
+ }
715
+ ]
716
+ }
717
+ ],
550
718
  "stateMachine": {
551
719
  "states": [
552
720
  {
@@ -565,8 +733,7 @@
565
733
  "payload": [
566
734
  {
567
735
  "name": "points",
568
- "type": "number",
569
- "required": true
736
+ "type": "string"
570
737
  }
571
738
  ]
572
739
  },
@@ -576,14 +743,27 @@
576
743
  "payload": [
577
744
  {
578
745
  "name": "multiplier",
579
- "type": "number",
580
- "required": true
746
+ "type": "string"
581
747
  }
582
748
  ]
583
749
  },
584
750
  {
585
751
  "key": "RESET",
586
752
  "name": "Reset"
753
+ },
754
+ {
755
+ "key": "TrainingScoreLoaded",
756
+ "name": "TrainingScore loaded"
757
+ },
758
+ {
759
+ "key": "TrainingScoreLoadFailed",
760
+ "name": "TrainingScore load failed",
761
+ "payload": [
762
+ {
763
+ "name": "message",
764
+ "type": "string"
765
+ }
766
+ ]
587
767
  }
588
768
  ],
589
769
  "transitions": [
@@ -594,25 +774,31 @@
594
774
  "effects": [
595
775
  [
596
776
  "fetch",
597
- "TrainingScore"
777
+ "TrainingScore",
778
+ {
779
+ "emit": {
780
+ "success": "TrainingScoreLoaded",
781
+ "failure": "TrainingScoreLoadFailed"
782
+ }
783
+ }
598
784
  ],
599
785
  [
600
786
  "render-ui",
601
787
  "main",
602
788
  {
603
- "type": "game-shell",
604
- "appName": "Logic Training",
605
789
  "showTopBar": true,
606
790
  "children": [
607
791
  {
608
- "type": "score-board",
609
- "score": "@entity.score",
610
- "highScore": "@entity.highScore",
611
792
  "combo": "@entity.combo",
793
+ "score": "@entity.score",
794
+ "level": "@entity.level",
612
795
  "multiplier": "@entity.multiplier",
613
- "level": "@entity.level"
796
+ "type": "score-board",
797
+ "highScore": "@entity.highScore"
614
798
  }
615
- ]
799
+ ],
800
+ "appName": "Logic Training",
801
+ "type": "game-shell"
616
802
  }
617
803
  ]
618
804
  ]
@@ -637,7 +823,7 @@
637
823
  [
638
824
  "+",
639
825
  "@entity.combo",
640
- 1
826
+ 1.0
641
827
  ]
642
828
  ],
643
829
  [
@@ -645,18 +831,18 @@
645
831
  "main",
646
832
  {
647
833
  "type": "game-shell",
648
- "appName": "Logic Training",
649
- "showTopBar": true,
650
834
  "children": [
651
835
  {
652
- "type": "score-board",
836
+ "combo": "@entity.combo",
653
837
  "score": "@entity.score",
654
838
  "highScore": "@entity.highScore",
655
- "combo": "@entity.combo",
839
+ "type": "score-board",
656
840
  "multiplier": "@entity.multiplier",
657
841
  "level": "@entity.level"
658
842
  }
659
- ]
843
+ ],
844
+ "appName": "Logic Training",
845
+ "showTopBar": true
660
846
  }
661
847
  ]
662
848
  ]
@@ -677,17 +863,17 @@
677
863
  {
678
864
  "type": "game-shell",
679
865
  "appName": "Logic Training",
680
- "showTopBar": true,
681
866
  "children": [
682
867
  {
683
- "type": "score-board",
684
- "score": "@entity.score",
685
868
  "highScore": "@entity.highScore",
869
+ "score": "@entity.score",
870
+ "type": "score-board",
686
871
  "combo": "@entity.combo",
687
872
  "multiplier": "@entity.multiplier",
688
873
  "level": "@entity.level"
689
874
  }
690
- ]
875
+ ],
876
+ "showTopBar": true
691
877
  }
692
878
  ]
693
879
  ]
@@ -700,46 +886,47 @@
700
886
  [
701
887
  "set",
702
888
  "@entity.score",
703
- 0
889
+ 0.0
704
890
  ],
705
891
  [
706
892
  "set",
707
893
  "@entity.combo",
708
- 0
894
+ 0.0
709
895
  ],
710
896
  [
711
897
  "set",
712
898
  "@entity.multiplier",
713
- 1
899
+ 1.0
714
900
  ],
715
901
  [
716
902
  "render-ui",
717
903
  "main",
718
904
  {
719
- "type": "game-shell",
720
- "appName": "Logic Training",
721
905
  "showTopBar": true,
906
+ "type": "game-shell",
722
907
  "children": [
723
908
  {
724
- "type": "score-board",
725
909
  "score": "@entity.score",
726
- "highScore": "@entity.highScore",
727
910
  "combo": "@entity.combo",
728
911
  "multiplier": "@entity.multiplier",
729
- "level": "@entity.level"
912
+ "level": "@entity.level",
913
+ "type": "score-board",
914
+ "highScore": "@entity.highScore"
730
915
  }
731
- ]
916
+ ],
917
+ "appName": "Logic Training"
732
918
  }
733
919
  ]
734
920
  ]
735
921
  }
736
922
  ]
737
- }
923
+ },
924
+ "scope": "instance"
738
925
  }
739
926
  ],
740
927
  "pages": [
741
928
  {
742
- "name": "ScoresPage",
929
+ "name": "Scores",
743
930
  "path": "/scores",
744
931
  "traits": [
745
932
  {
@@ -750,4 +937,4 @@
750
937
  ]
751
938
  }
752
939
  ]
753
- }
940
+ }