@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-platformer-game",
3
3
  "version": "1.0.0",
4
- "description": "Side-scrolling platformer game molecule. Composes game atoms into a two-trait orbital:",
4
+ "description": "std-platformer-game as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "PlatLevelOrbital",
@@ -38,16 +38,12 @@
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": "lives",
47
45
  "type": "number",
48
- "default": 3,
49
- "min": 0,
50
- "max": 10
46
+ "default": 3.0
51
47
  },
52
48
  {
53
49
  "name": "player",
@@ -59,25 +55,69 @@
59
55
  "type": "string",
60
56
  "default": ""
61
57
  }
62
- ],
63
- "instances": [
64
- {
65
- "id": "player-1",
66
- "name": "Player",
67
- "description": "Main character",
68
- "status": "active",
69
- "score": 0,
70
- "lives": 3,
71
- "player": "",
72
- "platforms": ""
73
- }
74
58
  ]
75
59
  },
76
60
  "traits": [
77
61
  {
78
62
  "name": "PlatLevelPlatformerFlow",
79
- "linkedEntity": "PlatLevel",
80
63
  "category": "interaction",
64
+ "linkedEntity": "PlatLevel",
65
+ "emits": [
66
+ {
67
+ "event": "PlatLevelLoaded",
68
+ "description": "Fired when PlatLevel finishes loading",
69
+ "scope": "internal",
70
+ "payload": [
71
+ {
72
+ "name": "id",
73
+ "type": "string"
74
+ },
75
+ {
76
+ "name": "name",
77
+ "type": "string"
78
+ },
79
+ {
80
+ "name": "description",
81
+ "type": "string"
82
+ },
83
+ {
84
+ "name": "status",
85
+ "type": "string"
86
+ },
87
+ {
88
+ "name": "createdAt",
89
+ "type": "string"
90
+ },
91
+ {
92
+ "name": "score",
93
+ "type": "number"
94
+ },
95
+ {
96
+ "name": "lives",
97
+ "type": "number"
98
+ },
99
+ {
100
+ "name": "player",
101
+ "type": "string"
102
+ },
103
+ {
104
+ "name": "platforms",
105
+ "type": "string"
106
+ }
107
+ ]
108
+ },
109
+ {
110
+ "event": "PlatLevelLoadFailed",
111
+ "description": "Fired when PlatLevel fails to load",
112
+ "scope": "internal",
113
+ "payload": [
114
+ {
115
+ "name": "message",
116
+ "type": "string"
117
+ }
118
+ ]
119
+ }
120
+ ],
81
121
  "stateMachine": {
82
122
  "states": [
83
123
  {
@@ -101,15 +141,19 @@
101
141
  },
102
142
  {
103
143
  "key": "START",
104
- "name": "Start Game"
144
+ "name": "Start"
145
+ },
146
+ {
147
+ "key": "NAVIGATE",
148
+ "name": "Navigate"
105
149
  },
106
150
  {
107
151
  "key": "LEFT",
108
- "name": "Move Left"
152
+ "name": "Left"
109
153
  },
110
154
  {
111
155
  "key": "RIGHT",
112
- "name": "Move Right"
156
+ "name": "Right"
113
157
  },
114
158
  {
115
159
  "key": "JUMP",
@@ -123,25 +167,35 @@
123
167
  "key": "PAUSE",
124
168
  "name": "Pause"
125
169
  },
170
+ {
171
+ "key": "GAME_OVER",
172
+ "name": "Game Over"
173
+ },
126
174
  {
127
175
  "key": "RESUME",
128
176
  "name": "Resume"
129
177
  },
130
178
  {
131
- "key": "GAME_OVER",
132
- "name": "Game Over"
179
+ "key": "CLOSE",
180
+ "name": "Close"
133
181
  },
134
182
  {
135
183
  "key": "RESTART",
136
184
  "name": "Restart"
137
185
  },
138
186
  {
139
- "key": "CLOSE",
140
- "name": "Close"
187
+ "key": "PlatLevelLoaded",
188
+ "name": "PlatLevel loaded"
141
189
  },
142
190
  {
143
- "key": "NAVIGATE",
144
- "name": "Navigate"
191
+ "key": "PlatLevelLoadFailed",
192
+ "name": "PlatLevel load failed",
193
+ "payload": [
194
+ {
195
+ "name": "message",
196
+ "type": "string"
197
+ }
198
+ ]
145
199
  }
146
200
  ],
147
201
  "transitions": [
@@ -152,20 +206,26 @@
152
206
  "effects": [
153
207
  [
154
208
  "fetch",
155
- "PlatLevel"
209
+ "PlatLevel",
210
+ {
211
+ "emit": {
212
+ "success": "PlatLevelLoaded",
213
+ "failure": "PlatLevelLoadFailed"
214
+ }
215
+ }
156
216
  ],
157
217
  [
158
218
  "render-ui",
159
219
  "main",
160
220
  {
161
- "type": "game-menu",
162
- "title": "Platformer",
163
221
  "subtitle": "Side-Scrolling Adventure",
222
+ "title": "Platformer",
223
+ "type": "game-menu",
164
224
  "menuItems": [
165
225
  {
226
+ "variant": "primary",
166
227
  "label": "Start Game",
167
- "event": "START",
168
- "variant": "primary"
228
+ "event": "START"
169
229
  }
170
230
  ]
171
231
  }
@@ -181,56 +241,45 @@
181
241
  "render-ui",
182
242
  "main",
183
243
  {
244
+ "worldWidth": 2400.0,
184
245
  "type": "platformer-canvas",
185
- "canvasWidth": 800,
186
- "canvasHeight": 400,
187
- "worldWidth": 2400,
188
- "worldHeight": 400,
189
- "followCamera": true,
190
- "bgColor": "#1a1a2e",
191
- "leftEvent": "LEFT",
192
- "rightEvent": "RIGHT",
193
246
  "jumpEvent": "JUMP",
194
- "stopEvent": "STOP"
247
+ "canvasWidth": 800.0,
248
+ "rightEvent": "RIGHT",
249
+ "leftEvent": "LEFT",
250
+ "worldHeight": 400.0,
251
+ "bgColor": "#1a1a2e",
252
+ "followCamera": true,
253
+ "stopEvent": "STOP",
254
+ "canvasHeight": 400.0
195
255
  }
196
256
  ]
197
257
  ]
198
258
  },
199
259
  {
200
- "from": "playing",
201
- "to": "playing",
202
- "event": "LEFT",
203
- "effects": []
260
+ "from": "menu",
261
+ "to": "menu",
262
+ "event": "NAVIGATE"
204
263
  },
205
264
  {
206
265
  "from": "playing",
207
266
  "to": "playing",
208
- "event": "RIGHT",
209
- "effects": []
267
+ "event": "LEFT"
210
268
  },
211
269
  {
212
270
  "from": "playing",
213
271
  "to": "playing",
214
- "event": "JUMP",
215
- "effects": []
272
+ "event": "RIGHT"
216
273
  },
217
274
  {
218
275
  "from": "playing",
219
276
  "to": "playing",
220
- "event": "STOP",
221
- "effects": []
222
- },
223
- {
224
- "from": "menu",
225
- "to": "menu",
226
- "event": "NAVIGATE",
227
- "effects": []
277
+ "event": "JUMP"
228
278
  },
229
279
  {
230
- "from": "paused",
231
- "to": "paused",
232
- "event": "NAVIGATE",
233
- "effects": []
280
+ "from": "playing",
281
+ "to": "playing",
282
+ "event": "STOP"
234
283
  },
235
284
  {
236
285
  "from": "playing",
@@ -241,24 +290,66 @@
241
290
  "render-ui",
242
291
  "modal",
243
292
  {
244
- "type": "game-menu",
245
293
  "title": "Paused",
246
294
  "menuItems": [
247
295
  {
248
- "label": "Resume",
249
296
  "event": "RESUME",
250
- "variant": "primary"
297
+ "variant": "primary",
298
+ "label": "Resume"
251
299
  },
252
300
  {
253
301
  "label": "Quit",
254
302
  "event": "RESTART",
255
303
  "variant": "ghost"
256
304
  }
305
+ ],
306
+ "type": "game-menu"
307
+ }
308
+ ]
309
+ ]
310
+ },
311
+ {
312
+ "from": "playing",
313
+ "to": "gameover",
314
+ "event": "GAME_OVER",
315
+ "effects": [
316
+ [
317
+ "render-ui",
318
+ "main",
319
+ {
320
+ "type": "game-over-screen",
321
+ "stats": [
322
+ {
323
+ "label": "Score",
324
+ "value": "@entity.score"
325
+ },
326
+ {
327
+ "value": "@entity.lives",
328
+ "label": "Lives"
329
+ }
330
+ ],
331
+ "title": "Game Over",
332
+ "menuItems": [
333
+ {
334
+ "event": "RESTART",
335
+ "variant": "primary",
336
+ "label": "Play Again"
337
+ },
338
+ {
339
+ "event": "RESTART",
340
+ "variant": "secondary",
341
+ "label": "Main Menu"
342
+ }
257
343
  ]
258
344
  }
259
345
  ]
260
346
  ]
261
347
  },
348
+ {
349
+ "from": "paused",
350
+ "to": "paused",
351
+ "event": "NAVIGATE"
352
+ },
262
353
  {
263
354
  "from": "paused",
264
355
  "to": "playing",
@@ -273,16 +364,16 @@
273
364
  "render-ui",
274
365
  "main",
275
366
  {
367
+ "jumpEvent": "JUMP",
276
368
  "type": "platformer-canvas",
277
- "canvasWidth": 800,
278
- "canvasHeight": 400,
279
- "worldWidth": 2400,
280
- "worldHeight": 400,
281
- "followCamera": true,
369
+ "canvasHeight": 400.0,
370
+ "worldWidth": 2400.0,
282
371
  "bgColor": "#1a1a2e",
372
+ "worldHeight": 400.0,
373
+ "canvasWidth": 800.0,
283
374
  "leftEvent": "LEFT",
284
375
  "rightEvent": "RIGHT",
285
- "jumpEvent": "JUMP",
376
+ "followCamera": true,
286
377
  "stopEvent": "STOP"
287
378
  }
288
379
  ]
@@ -303,115 +394,135 @@
303
394
  "main",
304
395
  {
305
396
  "type": "platformer-canvas",
306
- "canvasWidth": 800,
307
- "canvasHeight": 400,
308
- "worldWidth": 2400,
309
- "worldHeight": 400,
310
- "followCamera": true,
311
- "bgColor": "#1a1a2e",
312
397
  "leftEvent": "LEFT",
313
- "rightEvent": "RIGHT",
398
+ "canvasWidth": 800.0,
399
+ "followCamera": true,
314
400
  "jumpEvent": "JUMP",
315
- "stopEvent": "STOP"
316
- }
317
- ]
318
- ]
319
- },
320
- {
321
- "from": "playing",
322
- "to": "gameover",
323
- "event": "GAME_OVER",
324
- "effects": [
325
- [
326
- "render-ui",
327
- "main",
328
- {
329
- "type": "game-over-screen",
330
- "title": "Game Over",
331
- "stats": [
332
- {
333
- "label": "Score",
334
- "value": "@entity.score"
335
- },
336
- {
337
- "label": "Lives",
338
- "value": "@entity.lives"
339
- }
340
- ],
341
- "menuItems": [
342
- {
343
- "label": "Play Again",
344
- "event": "RESTART",
345
- "variant": "primary"
346
- },
347
- {
348
- "label": "Main Menu",
349
- "event": "RESTART",
350
- "variant": "secondary"
351
- }
352
- ]
401
+ "rightEvent": "RIGHT",
402
+ "worldHeight": 400.0,
403
+ "stopEvent": "STOP",
404
+ "canvasHeight": 400.0,
405
+ "worldWidth": 2400.0,
406
+ "bgColor": "#1a1a2e"
353
407
  }
354
408
  ]
355
409
  ]
356
410
  },
357
411
  {
358
- "from": "gameover",
412
+ "from": "paused",
359
413
  "to": "menu",
360
414
  "event": "RESTART",
361
415
  "effects": [
416
+ [
417
+ "render-ui",
418
+ "modal",
419
+ null
420
+ ],
362
421
  [
363
422
  "render-ui",
364
423
  "main",
365
424
  {
366
- "type": "game-menu",
367
- "title": "Platformer",
368
- "subtitle": "Side-Scrolling Adventure",
369
425
  "menuItems": [
370
426
  {
427
+ "variant": "primary",
371
428
  "label": "Start Game",
372
- "event": "START",
373
- "variant": "primary"
429
+ "event": "START"
374
430
  }
375
- ]
431
+ ],
432
+ "type": "game-menu",
433
+ "title": "Platformer",
434
+ "subtitle": "Side-Scrolling Adventure"
376
435
  }
377
436
  ]
378
437
  ]
379
438
  },
380
439
  {
381
- "from": "paused",
440
+ "from": "gameover",
382
441
  "to": "menu",
383
442
  "event": "RESTART",
384
443
  "effects": [
385
- [
386
- "render-ui",
387
- "modal",
388
- null
389
- ],
390
444
  [
391
445
  "render-ui",
392
446
  "main",
393
447
  {
394
- "type": "game-menu",
395
- "title": "Platformer",
396
- "subtitle": "Side-Scrolling Adventure",
397
448
  "menuItems": [
398
449
  {
399
450
  "label": "Start Game",
400
- "event": "START",
401
- "variant": "primary"
451
+ "variant": "primary",
452
+ "event": "START"
402
453
  }
403
- ]
454
+ ],
455
+ "subtitle": "Side-Scrolling Adventure",
456
+ "title": "Platformer",
457
+ "type": "game-menu"
404
458
  }
405
459
  ]
406
460
  ]
407
461
  }
408
462
  ]
409
- }
463
+ },
464
+ "scope": "instance"
410
465
  },
411
466
  {
412
467
  "name": "PlatLevelPlatformerCanvas",
413
- "linkedEntity": "PlatLevel",
414
468
  "category": "interaction",
469
+ "linkedEntity": "PlatLevel",
470
+ "emits": [
471
+ {
472
+ "event": "PlatLevelLoaded",
473
+ "description": "Fired when PlatLevel 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": "lives",
502
+ "type": "number"
503
+ },
504
+ {
505
+ "name": "player",
506
+ "type": "string"
507
+ },
508
+ {
509
+ "name": "platforms",
510
+ "type": "string"
511
+ }
512
+ ]
513
+ },
514
+ {
515
+ "event": "PlatLevelLoadFailed",
516
+ "description": "Fired when PlatLevel fails to load",
517
+ "scope": "internal",
518
+ "payload": [
519
+ {
520
+ "name": "message",
521
+ "type": "string"
522
+ }
523
+ ]
524
+ }
525
+ ],
415
526
  "stateMachine": {
416
527
  "states": [
417
528
  {
@@ -427,13 +538,17 @@
427
538
  "key": "INIT",
428
539
  "name": "Initialize"
429
540
  },
541
+ {
542
+ "key": "START",
543
+ "name": "Start"
544
+ },
430
545
  {
431
546
  "key": "LEFT",
432
- "name": "Move Left"
547
+ "name": "Left"
433
548
  },
434
549
  {
435
550
  "key": "RIGHT",
436
- "name": "Move Right"
551
+ "name": "Right"
437
552
  },
438
553
  {
439
554
  "key": "JUMP",
@@ -444,8 +559,18 @@
444
559
  "name": "Stop"
445
560
  },
446
561
  {
447
- "key": "START",
448
- "name": "Start"
562
+ "key": "PlatLevelLoaded",
563
+ "name": "PlatLevel loaded"
564
+ },
565
+ {
566
+ "key": "PlatLevelLoadFailed",
567
+ "name": "PlatLevel load failed",
568
+ "payload": [
569
+ {
570
+ "name": "message",
571
+ "type": "string"
572
+ }
573
+ ]
449
574
  }
450
575
  ],
451
576
  "transitions": [
@@ -456,7 +581,13 @@
456
581
  "effects": [
457
582
  [
458
583
  "fetch",
459
- "PlatLevel"
584
+ "PlatLevel",
585
+ {
586
+ "emit": {
587
+ "success": "PlatLevelLoaded",
588
+ "failure": "PlatLevelLoadFailed"
589
+ }
590
+ }
460
591
  ]
461
592
  ]
462
593
  },
@@ -470,18 +601,18 @@
470
601
  "main",
471
602
  {
472
603
  "type": "platformer-canvas",
473
- "platforms": "@entity.platforms",
474
- "player": "@entity.player",
475
- "canvasWidth": 800,
476
- "canvasHeight": 400,
477
- "worldWidth": 2400,
478
- "worldHeight": 400,
479
- "followCamera": true,
480
- "bgColor": "#1a1a2e",
481
- "leftEvent": "LEFT",
482
604
  "rightEvent": "RIGHT",
605
+ "leftEvent": "LEFT",
483
606
  "jumpEvent": "JUMP",
484
- "stopEvent": "STOP"
607
+ "player": "@entity.player",
608
+ "canvasHeight": 400.0,
609
+ "platforms": "@entity.platforms",
610
+ "canvasWidth": 800.0,
611
+ "bgColor": "#1a1a2e",
612
+ "worldWidth": 2400.0,
613
+ "followCamera": true,
614
+ "stopEvent": "STOP",
615
+ "worldHeight": 400.0
485
616
  }
486
617
  ]
487
618
  ]
@@ -489,20 +620,17 @@
489
620
  {
490
621
  "from": "running",
491
622
  "to": "running",
492
- "event": "LEFT",
493
- "effects": []
623
+ "event": "LEFT"
494
624
  },
495
625
  {
496
626
  "from": "running",
497
627
  "to": "running",
498
- "event": "RIGHT",
499
- "effects": []
628
+ "event": "RIGHT"
500
629
  },
501
630
  {
502
631
  "from": "running",
503
632
  "to": "running",
504
- "event": "JUMP",
505
- "effects": []
633
+ "event": "JUMP"
506
634
  },
507
635
  {
508
636
  "from": "running",
@@ -513,25 +641,26 @@
513
641
  "render-ui",
514
642
  "main",
515
643
  {
644
+ "rightEvent": "RIGHT",
645
+ "worldWidth": 2400.0,
646
+ "jumpEvent": "JUMP",
647
+ "canvasHeight": 400.0,
516
648
  "type": "platformer-canvas",
517
- "platforms": "@entity.platforms",
518
- "player": "@entity.player",
519
- "canvasWidth": 800,
520
- "canvasHeight": 400,
521
- "worldWidth": 2400,
522
- "worldHeight": 400,
523
649
  "followCamera": true,
650
+ "worldHeight": 400.0,
651
+ "canvasWidth": 800.0,
652
+ "stopEvent": "STOP",
653
+ "player": "@entity.player",
524
654
  "bgColor": "#1a1a2e",
525
- "leftEvent": "LEFT",
526
- "rightEvent": "RIGHT",
527
- "jumpEvent": "JUMP",
528
- "stopEvent": "STOP"
655
+ "platforms": "@entity.platforms",
656
+ "leftEvent": "LEFT"
529
657
  }
530
658
  ]
531
659
  ]
532
660
  }
533
661
  ]
534
- }
662
+ },
663
+ "scope": "instance"
535
664
  }
536
665
  ],
537
666
  "pages": [
@@ -550,4 +679,4 @@
550
679
  ]
551
680
  }
552
681
  ]
553
- }
682
+ }