@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-puzzle-game",
3
3
  "version": "1.0.0",
4
- "description": "Puzzle game molecule. Composes game atoms into a two-trait orbital:",
4
+ "description": "std-puzzle-game as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "PuzzleBoardOrbital",
@@ -38,66 +38,104 @@
38
38
  {
39
39
  "name": "score",
40
40
  "type": "number",
41
- "default": 0,
42
- "min": 0,
43
- "max": 9999
41
+ "default": 0.0
44
42
  },
45
43
  {
46
44
  "name": "highScore",
47
45
  "type": "number",
48
- "default": 0,
49
- "min": 0,
50
- "max": 9999
46
+ "default": 0.0
51
47
  },
52
48
  {
53
49
  "name": "combo",
54
50
  "type": "number",
55
- "default": 0,
56
- "min": 0,
57
- "max": 99
51
+ "default": 0.0
58
52
  },
59
53
  {
60
54
  "name": "multiplier",
61
55
  "type": "number",
62
- "default": 1,
63
- "min": 1,
64
- "max": 10
56
+ "default": 1.0
65
57
  },
66
58
  {
67
59
  "name": "level",
68
60
  "type": "number",
69
- "default": 1,
70
- "min": 1,
71
- "max": 99
61
+ "default": 1.0
72
62
  },
73
63
  {
74
64
  "name": "moves",
75
65
  "type": "number",
76
- "default": 0,
77
- "min": 0,
78
- "max": 9999
79
- }
80
- ],
81
- "instances": [
82
- {
83
- "id": "puzzle-1",
84
- "name": "Puzzle Board",
85
- "description": "Active puzzle",
86
- "status": "active",
87
- "score": 0,
88
- "highScore": 0,
89
- "combo": 0,
90
- "multiplier": 1,
91
- "level": 1,
92
- "moves": 0
66
+ "default": 0.0
93
67
  }
94
68
  ]
95
69
  },
96
70
  "traits": [
97
71
  {
98
72
  "name": "PuzzleBoardPuzzleFlow",
99
- "linkedEntity": "PuzzleBoard",
100
73
  "category": "interaction",
74
+ "linkedEntity": "PuzzleBoard",
75
+ "emits": [
76
+ {
77
+ "event": "PuzzleBoardLoaded",
78
+ "description": "Fired when PuzzleBoard finishes loading",
79
+ "scope": "internal",
80
+ "payload": [
81
+ {
82
+ "name": "id",
83
+ "type": "string"
84
+ },
85
+ {
86
+ "name": "name",
87
+ "type": "string"
88
+ },
89
+ {
90
+ "name": "description",
91
+ "type": "string"
92
+ },
93
+ {
94
+ "name": "status",
95
+ "type": "string"
96
+ },
97
+ {
98
+ "name": "createdAt",
99
+ "type": "string"
100
+ },
101
+ {
102
+ "name": "score",
103
+ "type": "number"
104
+ },
105
+ {
106
+ "name": "highScore",
107
+ "type": "number"
108
+ },
109
+ {
110
+ "name": "combo",
111
+ "type": "number"
112
+ },
113
+ {
114
+ "name": "multiplier",
115
+ "type": "number"
116
+ },
117
+ {
118
+ "name": "level",
119
+ "type": "number"
120
+ },
121
+ {
122
+ "name": "moves",
123
+ "type": "number"
124
+ }
125
+ ]
126
+ },
127
+ {
128
+ "event": "PuzzleBoardLoadFailed",
129
+ "description": "Fired when PuzzleBoard fails to load",
130
+ "scope": "internal",
131
+ "payload": [
132
+ {
133
+ "name": "message",
134
+ "type": "string"
135
+ }
136
+ ]
137
+ }
138
+ ],
101
139
  "stateMachine": {
102
140
  "states": [
103
141
  {
@@ -121,39 +159,53 @@
121
159
  },
122
160
  {
123
161
  "key": "START",
124
- "name": "Start Puzzle"
162
+ "name": "Start"
163
+ },
164
+ {
165
+ "key": "NAVIGATE",
166
+ "name": "Navigate"
125
167
  },
126
168
  {
127
169
  "key": "MOVE",
128
- "name": "Make Move"
170
+ "name": "Move"
129
171
  },
130
172
  {
131
173
  "key": "HINT",
132
- "name": "Show Hint"
174
+ "name": "Hint"
133
175
  },
134
176
  {
135
177
  "key": "PAUSE",
136
178
  "name": "Pause"
137
179
  },
180
+ {
181
+ "key": "GAME_OVER",
182
+ "name": "Game Over"
183
+ },
138
184
  {
139
185
  "key": "RESUME",
140
186
  "name": "Resume"
141
187
  },
142
188
  {
143
- "key": "GAME_OVER",
144
- "name": "Puzzle Complete"
189
+ "key": "CLOSE",
190
+ "name": "Close"
145
191
  },
146
192
  {
147
193
  "key": "RESTART",
148
194
  "name": "Restart"
149
195
  },
150
196
  {
151
- "key": "CLOSE",
152
- "name": "Close"
197
+ "key": "PuzzleBoardLoaded",
198
+ "name": "PuzzleBoard loaded"
153
199
  },
154
200
  {
155
- "key": "NAVIGATE",
156
- "name": "Navigate"
201
+ "key": "PuzzleBoardLoadFailed",
202
+ "name": "PuzzleBoard load failed",
203
+ "payload": [
204
+ {
205
+ "name": "message",
206
+ "type": "string"
207
+ }
208
+ ]
157
209
  }
158
210
  ],
159
211
  "transitions": [
@@ -164,20 +216,26 @@
164
216
  "effects": [
165
217
  [
166
218
  "fetch",
167
- "PuzzleBoard"
219
+ "PuzzleBoard",
220
+ {
221
+ "emit": {
222
+ "failure": "PuzzleBoardLoadFailed",
223
+ "success": "PuzzleBoardLoaded"
224
+ }
225
+ }
168
226
  ],
169
227
  [
170
228
  "render-ui",
171
229
  "main",
172
230
  {
173
- "type": "game-menu",
174
- "title": "Puzzle",
175
231
  "subtitle": "Puzzle Challenge",
232
+ "title": "Puzzle",
233
+ "type": "game-menu",
176
234
  "menuItems": [
177
235
  {
178
- "label": "Start Puzzle",
179
236
  "event": "START",
180
- "variant": "primary"
237
+ "variant": "primary",
238
+ "label": "Start Puzzle"
181
239
  }
182
240
  ]
183
241
  }
@@ -194,13 +252,18 @@
194
252
  "main",
195
253
  {
196
254
  "type": "game-canvas-2d",
197
- "width": 800,
198
- "height": 600,
199
- "fps": 60
255
+ "height": 600.0,
256
+ "width": 800.0,
257
+ "fps": 60.0
200
258
  }
201
259
  ]
202
260
  ]
203
261
  },
262
+ {
263
+ "from": "menu",
264
+ "to": "menu",
265
+ "event": "NAVIGATE"
266
+ },
204
267
  {
205
268
  "from": "playing",
206
269
  "to": "playing",
@@ -212,17 +275,17 @@
212
275
  [
213
276
  "+",
214
277
  "@entity.moves",
215
- 1
278
+ 1.0
216
279
  ]
217
280
  ],
218
281
  [
219
282
  "render-ui",
220
283
  "main",
221
284
  {
285
+ "fps": 60.0,
222
286
  "type": "game-canvas-2d",
223
- "width": 800,
224
- "height": 600,
225
- "fps": 60
287
+ "width": 800.0,
288
+ "height": 600.0
226
289
  }
227
290
  ]
228
291
  ]
@@ -230,20 +293,7 @@
230
293
  {
231
294
  "from": "playing",
232
295
  "to": "playing",
233
- "event": "HINT",
234
- "effects": []
235
- },
236
- {
237
- "from": "menu",
238
- "to": "menu",
239
- "event": "NAVIGATE",
240
- "effects": []
241
- },
242
- {
243
- "from": "paused",
244
- "to": "paused",
245
- "event": "NAVIGATE",
246
- "effects": []
296
+ "event": "HINT"
247
297
  },
248
298
  {
249
299
  "from": "playing",
@@ -254,50 +304,70 @@
254
304
  "render-ui",
255
305
  "modal",
256
306
  {
257
- "type": "game-menu",
258
- "title": "Paused",
259
307
  "menuItems": [
260
308
  {
261
- "label": "Resume",
262
309
  "event": "RESUME",
263
- "variant": "primary"
310
+ "variant": "primary",
311
+ "label": "Resume"
264
312
  },
265
313
  {
266
314
  "label": "Quit",
267
315
  "event": "RESTART",
268
316
  "variant": "ghost"
269
317
  }
270
- ]
318
+ ],
319
+ "type": "game-menu",
320
+ "title": "Paused"
271
321
  }
272
322
  ]
273
323
  ]
274
324
  },
275
325
  {
276
- "from": "paused",
277
- "to": "playing",
278
- "event": "RESUME",
326
+ "from": "playing",
327
+ "to": "gameover",
328
+ "event": "GAME_OVER",
279
329
  "effects": [
280
- [
281
- "render-ui",
282
- "modal",
283
- null
284
- ],
285
330
  [
286
331
  "render-ui",
287
332
  "main",
288
333
  {
289
- "type": "game-canvas-2d",
290
- "width": 800,
291
- "height": 600,
292
- "fps": 60
334
+ "type": "game-over-screen",
335
+ "title": "Puzzle Complete",
336
+ "stats": [
337
+ {
338
+ "label": "Score",
339
+ "value": "@entity.score"
340
+ },
341
+ {
342
+ "label": "Moves",
343
+ "value": "@entity.moves"
344
+ }
345
+ ],
346
+ "menuItems": [
347
+ {
348
+ "label": "Play Again",
349
+ "event": "RESTART",
350
+ "variant": "primary"
351
+ },
352
+ {
353
+ "event": "RESTART",
354
+ "variant": "secondary",
355
+ "label": "Main Menu"
356
+ }
357
+ ]
293
358
  }
294
359
  ]
295
360
  ]
296
361
  },
362
+ {
363
+ "from": "paused",
364
+ "to": "paused",
365
+ "event": "NAVIGATE"
366
+ },
297
367
  {
298
368
  "from": "paused",
299
369
  "to": "playing",
300
- "event": "CLOSE",
370
+ "event": "RESUME",
301
371
  "effects": [
302
372
  [
303
373
  "render-ui",
@@ -308,90 +378,75 @@
308
378
  "render-ui",
309
379
  "main",
310
380
  {
381
+ "width": 800.0,
382
+ "height": 600.0,
311
383
  "type": "game-canvas-2d",
312
- "width": 800,
313
- "height": 600,
314
- "fps": 60
384
+ "fps": 60.0
315
385
  }
316
386
  ]
317
387
  ]
318
388
  },
319
389
  {
320
- "from": "playing",
321
- "to": "gameover",
322
- "event": "GAME_OVER",
390
+ "from": "paused",
391
+ "to": "playing",
392
+ "event": "CLOSE",
323
393
  "effects": [
394
+ [
395
+ "render-ui",
396
+ "modal",
397
+ null
398
+ ],
324
399
  [
325
400
  "render-ui",
326
401
  "main",
327
402
  {
328
- "type": "game-over-screen",
329
- "title": "Puzzle Complete",
330
- "stats": [
331
- {
332
- "label": "Score",
333
- "value": "@entity.score"
334
- },
335
- {
336
- "label": "Moves",
337
- "value": "@entity.moves"
338
- }
339
- ],
340
- "menuItems": [
341
- {
342
- "label": "Play Again",
343
- "event": "RESTART",
344
- "variant": "primary"
345
- },
346
- {
347
- "label": "Main Menu",
348
- "event": "RESTART",
349
- "variant": "secondary"
350
- }
351
- ]
403
+ "height": 600.0,
404
+ "width": 800.0,
405
+ "fps": 60.0,
406
+ "type": "game-canvas-2d"
352
407
  }
353
408
  ]
354
409
  ]
355
410
  },
356
411
  {
357
- "from": "gameover",
412
+ "from": "paused",
358
413
  "to": "menu",
359
414
  "event": "RESTART",
360
415
  "effects": [
416
+ [
417
+ "render-ui",
418
+ "modal",
419
+ null
420
+ ],
361
421
  [
362
422
  "render-ui",
363
423
  "main",
364
424
  {
365
425
  "type": "game-menu",
366
- "title": "Puzzle",
367
426
  "subtitle": "Puzzle Challenge",
368
427
  "menuItems": [
369
428
  {
370
- "label": "Start Puzzle",
371
429
  "event": "START",
430
+ "label": "Start Puzzle",
372
431
  "variant": "primary"
373
432
  }
374
- ]
433
+ ],
434
+ "title": "Puzzle"
375
435
  }
376
436
  ]
377
437
  ]
378
438
  },
379
439
  {
380
- "from": "paused",
440
+ "from": "gameover",
381
441
  "to": "menu",
382
442
  "event": "RESTART",
383
443
  "effects": [
384
- [
385
- "render-ui",
386
- "modal",
387
- null
388
- ],
389
444
  [
390
445
  "render-ui",
391
446
  "main",
392
447
  {
393
- "type": "game-menu",
394
448
  "title": "Puzzle",
449
+ "type": "game-menu",
395
450
  "subtitle": "Puzzle Challenge",
396
451
  "menuItems": [
397
452
  {
@@ -405,12 +460,77 @@
405
460
  ]
406
461
  }
407
462
  ]
408
- }
463
+ },
464
+ "scope": "instance"
409
465
  },
410
466
  {
411
467
  "name": "PuzzleBoardPuzzleScore",
412
- "linkedEntity": "PuzzleBoard",
413
468
  "category": "interaction",
469
+ "linkedEntity": "PuzzleBoard",
470
+ "emits": [
471
+ {
472
+ "event": "PuzzleBoardLoaded",
473
+ "description": "Fired when PuzzleBoard finishes loading",
474
+ "scope": "internal",
475
+ "payload": [
476
+ {
477
+ "name": "id",
478
+ "type": "string"
479
+ },
480
+ {
481
+ "name": "name",
482
+ "type": "string"
483
+ },
484
+ {
485
+ "name": "description",
486
+ "type": "string"
487
+ },
488
+ {
489
+ "name": "status",
490
+ "type": "string"
491
+ },
492
+ {
493
+ "name": "createdAt",
494
+ "type": "string"
495
+ },
496
+ {
497
+ "name": "score",
498
+ "type": "number"
499
+ },
500
+ {
501
+ "name": "highScore",
502
+ "type": "number"
503
+ },
504
+ {
505
+ "name": "combo",
506
+ "type": "number"
507
+ },
508
+ {
509
+ "name": "multiplier",
510
+ "type": "number"
511
+ },
512
+ {
513
+ "name": "level",
514
+ "type": "number"
515
+ },
516
+ {
517
+ "name": "moves",
518
+ "type": "number"
519
+ }
520
+ ]
521
+ },
522
+ {
523
+ "event": "PuzzleBoardLoadFailed",
524
+ "description": "Fired when PuzzleBoard fails to load",
525
+ "scope": "internal",
526
+ "payload": [
527
+ {
528
+ "name": "message",
529
+ "type": "string"
530
+ }
531
+ ]
532
+ }
533
+ ],
414
534
  "stateMachine": {
415
535
  "states": [
416
536
  {
@@ -448,6 +568,20 @@
448
568
  {
449
569
  "key": "RESET",
450
570
  "name": "Reset"
571
+ },
572
+ {
573
+ "key": "PuzzleBoardLoaded",
574
+ "name": "PuzzleBoard loaded"
575
+ },
576
+ {
577
+ "key": "PuzzleBoardLoadFailed",
578
+ "name": "PuzzleBoard load failed",
579
+ "payload": [
580
+ {
581
+ "name": "message",
582
+ "type": "string"
583
+ }
584
+ ]
451
585
  }
452
586
  ],
453
587
  "transitions": [
@@ -458,7 +592,13 @@
458
592
  "effects": [
459
593
  [
460
594
  "fetch",
461
- "PuzzleBoard"
595
+ "PuzzleBoard",
596
+ {
597
+ "emit": {
598
+ "failure": "PuzzleBoardLoadFailed",
599
+ "success": "PuzzleBoardLoaded"
600
+ }
601
+ }
462
602
  ]
463
603
  ]
464
604
  },
@@ -482,7 +622,7 @@
482
622
  [
483
623
  "+",
484
624
  "@entity.combo",
485
- 1
625
+ 1.0
486
626
  ]
487
627
  ],
488
628
  [
@@ -491,10 +631,10 @@
491
631
  {
492
632
  "type": "score-board",
493
633
  "score": "@entity.score",
494
- "highScore": "@entity.highScore",
495
- "combo": "@entity.combo",
496
634
  "multiplier": "@entity.multiplier",
497
- "level": "@entity.level"
635
+ "level": "@entity.level",
636
+ "combo": "@entity.combo",
637
+ "highScore": "@entity.highScore"
498
638
  }
499
639
  ]
500
640
  ]
@@ -513,10 +653,10 @@
513
653
  "render-ui",
514
654
  "main",
515
655
  {
516
- "type": "score-board",
517
656
  "score": "@entity.score",
518
- "highScore": "@entity.highScore",
657
+ "type": "score-board",
519
658
  "combo": "@entity.combo",
659
+ "highScore": "@entity.highScore",
520
660
  "multiplier": "@entity.multiplier",
521
661
  "level": "@entity.level"
522
662
  }
@@ -531,34 +671,35 @@
531
671
  [
532
672
  "set",
533
673
  "@entity.score",
534
- 0
674
+ 0.0
535
675
  ],
536
676
  [
537
677
  "set",
538
678
  "@entity.combo",
539
- 0
679
+ 0.0
540
680
  ],
541
681
  [
542
682
  "set",
543
683
  "@entity.multiplier",
544
- 1
684
+ 1.0
545
685
  ],
546
686
  [
547
687
  "render-ui",
548
688
  "main",
549
689
  {
550
- "type": "score-board",
690
+ "level": "@entity.level",
551
691
  "score": "@entity.score",
552
- "highScore": "@entity.highScore",
553
- "combo": "@entity.combo",
554
692
  "multiplier": "@entity.multiplier",
555
- "level": "@entity.level"
693
+ "type": "score-board",
694
+ "highScore": "@entity.highScore",
695
+ "combo": "@entity.combo"
556
696
  }
557
697
  ]
558
698
  ]
559
699
  }
560
700
  ]
561
- }
701
+ },
702
+ "scope": "instance"
562
703
  }
563
704
  ],
564
705
  "pages": [
@@ -577,4 +718,4 @@
577
718
  ]
578
719
  }
579
720
  ]
580
- }
721
+ }