@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-combat",
3
3
  "version": "1.0.0",
4
- "description": "Attack cycle behavior: ready, attacking, cooldown, defeated. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-combat as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "CombatantOrbital",
@@ -38,25 +38,77 @@
38
38
  {
39
39
  "name": "hp",
40
40
  "type": "number",
41
- "default": 100
41
+ "default": 100.0
42
42
  },
43
43
  {
44
44
  "name": "attack",
45
45
  "type": "number",
46
- "default": 10
46
+ "default": 10.0
47
47
  },
48
48
  {
49
49
  "name": "defense",
50
50
  "type": "number",
51
- "default": 5
51
+ "default": 5.0
52
52
  }
53
53
  ]
54
54
  },
55
55
  "traits": [
56
56
  {
57
57
  "name": "CombatantCombat",
58
- "linkedEntity": "Combatant",
59
58
  "category": "interaction",
59
+ "linkedEntity": "Combatant",
60
+ "emits": [
61
+ {
62
+ "event": "CombatantLoaded",
63
+ "description": "Fired when Combatant finishes loading",
64
+ "scope": "internal",
65
+ "payload": [
66
+ {
67
+ "name": "id",
68
+ "type": "string"
69
+ },
70
+ {
71
+ "name": "name",
72
+ "type": "string"
73
+ },
74
+ {
75
+ "name": "description",
76
+ "type": "string"
77
+ },
78
+ {
79
+ "name": "status",
80
+ "type": "string"
81
+ },
82
+ {
83
+ "name": "createdAt",
84
+ "type": "string"
85
+ },
86
+ {
87
+ "name": "hp",
88
+ "type": "number"
89
+ },
90
+ {
91
+ "name": "attack",
92
+ "type": "number"
93
+ },
94
+ {
95
+ "name": "defense",
96
+ "type": "number"
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ "event": "CombatantLoadFailed",
102
+ "description": "Fired when Combatant fails to load",
103
+ "scope": "internal",
104
+ "payload": [
105
+ {
106
+ "name": "message",
107
+ "type": "string"
108
+ }
109
+ ]
110
+ }
111
+ ],
60
112
  "stateMachine": {
61
113
  "states": [
62
114
  {
@@ -100,17 +152,31 @@
100
152
  }
101
153
  ]
102
154
  },
103
- {
104
- "key": "COOLDOWN_END",
105
- "name": "Cooldown End"
106
- },
107
155
  {
108
156
  "key": "DEFEAT",
109
157
  "name": "Defeat"
110
158
  },
159
+ {
160
+ "key": "COOLDOWN_END",
161
+ "name": "Cooldown End"
162
+ },
111
163
  {
112
164
  "key": "RESET",
113
165
  "name": "Reset"
166
+ },
167
+ {
168
+ "key": "CombatantLoaded",
169
+ "name": "Combatant loaded"
170
+ },
171
+ {
172
+ "key": "CombatantLoadFailed",
173
+ "name": "Combatant load failed",
174
+ "payload": [
175
+ {
176
+ "name": "message",
177
+ "type": "string"
178
+ }
179
+ ]
114
180
  }
115
181
  ],
116
182
  "transitions": [
@@ -121,43 +187,49 @@
121
187
  "effects": [
122
188
  [
123
189
  "fetch",
124
- "Combatant"
190
+ "Combatant",
191
+ {
192
+ "emit": {
193
+ "failure": "CombatantLoadFailed",
194
+ "success": "CombatantLoaded"
195
+ }
196
+ }
125
197
  ],
126
198
  [
127
199
  "render-ui",
128
200
  "main",
129
201
  {
130
- "type": "stack",
131
202
  "direction": "vertical",
132
- "gap": "lg",
133
- "align": "center",
134
203
  "children": [
135
204
  {
136
205
  "type": "game-hud",
137
206
  "position": "top",
138
207
  "stats": [
139
208
  {
140
- "label": "HP",
141
- "value": "@entity.hp"
209
+ "value": "@entity.hp",
210
+ "label": "HP"
142
211
  },
143
212
  {
144
213
  "label": "Attack",
145
214
  "value": "@entity.attack"
146
215
  },
147
216
  {
148
- "label": "Defense",
149
- "value": "@entity.defense"
217
+ "value": "@entity.defense",
218
+ "label": "Defense"
150
219
  }
151
220
  ]
152
221
  },
153
222
  {
154
- "type": "button",
223
+ "icon": "swords",
155
224
  "label": "Attack",
156
- "event": "ATTACK",
157
225
  "variant": "primary",
158
- "icon": "swords"
226
+ "event": "ATTACK",
227
+ "type": "button"
159
228
  }
160
- ]
229
+ ],
230
+ "gap": "lg",
231
+ "type": "stack",
232
+ "align": "center"
161
233
  }
162
234
  ]
163
235
  ]
@@ -172,21 +244,20 @@
172
244
  "main",
173
245
  {
174
246
  "type": "stack",
175
- "direction": "vertical",
176
- "gap": "lg",
177
247
  "align": "center",
248
+ "direction": "vertical",
178
249
  "children": [
179
250
  {
180
- "type": "game-hud",
181
251
  "position": "top",
252
+ "type": "game-hud",
182
253
  "stats": [
183
254
  {
184
255
  "label": "HP",
185
256
  "value": "@entity.hp"
186
257
  },
187
258
  {
188
- "label": "Attack",
189
- "value": "@entity.attack"
259
+ "value": "@entity.attack",
260
+ "label": "Attack"
190
261
  },
191
262
  {
192
263
  "label": "Defense",
@@ -196,12 +267,13 @@
196
267
  },
197
268
  {
198
269
  "type": "button",
199
- "label": "Cooldown End",
270
+ "icon": "clock",
200
271
  "event": "HIT",
201
272
  "variant": "secondary",
202
- "icon": "clock"
273
+ "label": "Cooldown End"
203
274
  }
204
- ]
275
+ ],
276
+ "gap": "lg"
205
277
  }
206
278
  ]
207
279
  ]
@@ -215,14 +287,12 @@
215
287
  "render-ui",
216
288
  "main",
217
289
  {
218
- "type": "stack",
219
- "direction": "vertical",
220
290
  "gap": "lg",
291
+ "direction": "vertical",
221
292
  "align": "center",
293
+ "type": "stack",
222
294
  "children": [
223
295
  {
224
- "type": "game-hud",
225
- "position": "top",
226
296
  "stats": [
227
297
  {
228
298
  "label": "HP",
@@ -233,10 +303,12 @@
233
303
  "value": "@entity.attack"
234
304
  },
235
305
  {
236
- "label": "Defense",
237
- "value": "@entity.defense"
306
+ "value": "@entity.defense",
307
+ "label": "Defense"
238
308
  }
239
- ]
309
+ ],
310
+ "position": "top",
311
+ "type": "game-hud"
240
312
  },
241
313
  {
242
314
  "type": "badge",
@@ -248,76 +320,76 @@
248
320
  ]
249
321
  },
250
322
  {
251
- "from": "cooldown",
252
- "to": "ready",
253
- "event": "COOLDOWN_END",
323
+ "from": "attacking",
324
+ "to": "defeated",
325
+ "event": "DEFEAT",
254
326
  "effects": [
255
327
  [
256
328
  "render-ui",
257
329
  "main",
258
330
  {
259
- "type": "stack",
260
331
  "direction": "vertical",
261
332
  "gap": "lg",
262
- "align": "center",
333
+ "type": "stack",
263
334
  "children": [
264
335
  {
265
- "type": "game-hud",
266
- "position": "top",
267
- "stats": [
268
- {
269
- "label": "HP",
270
- "value": "@entity.hp"
271
- },
272
- {
273
- "label": "Attack",
274
- "value": "@entity.attack"
275
- },
276
- {
277
- "label": "Defense",
278
- "value": "@entity.defense"
279
- }
280
- ]
336
+ "type": "game-over-screen",
337
+ "title": "Defeated",
338
+ "variant": "defeat"
281
339
  },
282
340
  {
283
341
  "type": "button",
284
- "label": "Attack",
285
- "event": "ATTACK",
286
- "variant": "primary",
287
- "icon": "swords"
342
+ "label": "Reset",
343
+ "event": "RESET",
344
+ "variant": "ghost",
345
+ "icon": "rotate-ccw"
288
346
  }
289
- ]
347
+ ],
348
+ "align": "center"
290
349
  }
291
350
  ]
292
351
  ]
293
352
  },
294
353
  {
295
- "from": "attacking",
296
- "to": "defeated",
297
- "event": "DEFEAT",
354
+ "from": "cooldown",
355
+ "to": "ready",
356
+ "event": "COOLDOWN_END",
298
357
  "effects": [
299
358
  [
300
359
  "render-ui",
301
360
  "main",
302
361
  {
303
- "type": "stack",
304
362
  "direction": "vertical",
305
- "gap": "lg",
306
- "align": "center",
307
363
  "children": [
308
364
  {
309
- "type": "game-over-screen",
310
- "title": "Defeated",
311
- "variant": "defeat"
365
+ "stats": [
366
+ {
367
+ "value": "@entity.hp",
368
+ "label": "HP"
369
+ },
370
+ {
371
+ "value": "@entity.attack",
372
+ "label": "Attack"
373
+ },
374
+ {
375
+ "label": "Defense",
376
+ "value": "@entity.defense"
377
+ }
378
+ ],
379
+ "type": "game-hud",
380
+ "position": "top"
312
381
  },
313
382
  {
383
+ "label": "Attack",
314
384
  "type": "button",
315
- "label": "Reset",
316
- "event": "RESET",
317
- "variant": "ghost",
318
- "icon": "rotate-ccw"
385
+ "variant": "primary",
386
+ "icon": "swords",
387
+ "event": "ATTACK"
319
388
  }
320
- ]
389
+ ],
390
+ "align": "center",
391
+ "type": "stack",
392
+ "gap": "lg"
321
393
  }
322
394
  ]
323
395
  ]
@@ -331,10 +403,7 @@
331
403
  "render-ui",
332
404
  "main",
333
405
  {
334
- "type": "stack",
335
- "direction": "vertical",
336
406
  "gap": "lg",
337
- "align": "center",
338
407
  "children": [
339
408
  {
340
409
  "type": "game-over-screen",
@@ -342,13 +411,16 @@
342
411
  "variant": "defeat"
343
412
  },
344
413
  {
345
- "type": "button",
346
414
  "label": "Reset",
347
415
  "event": "RESET",
416
+ "icon": "rotate-ccw",
348
417
  "variant": "ghost",
349
- "icon": "rotate-ccw"
418
+ "type": "button"
350
419
  }
351
- ]
420
+ ],
421
+ "type": "stack",
422
+ "direction": "vertical",
423
+ "align": "center"
352
424
  }
353
425
  ]
354
426
  ]
@@ -362,13 +434,8 @@
362
434
  "render-ui",
363
435
  "main",
364
436
  {
365
- "type": "stack",
366
- "direction": "vertical",
367
- "gap": "lg",
368
- "align": "center",
369
437
  "children": [
370
438
  {
371
- "type": "game-hud",
372
439
  "position": "top",
373
440
  "stats": [
374
441
  {
@@ -376,29 +443,35 @@
376
443
  "value": "@entity.hp"
377
444
  },
378
445
  {
379
- "label": "Attack",
380
- "value": "@entity.attack"
446
+ "value": "@entity.attack",
447
+ "label": "Attack"
381
448
  },
382
449
  {
383
- "label": "Defense",
384
- "value": "@entity.defense"
450
+ "value": "@entity.defense",
451
+ "label": "Defense"
385
452
  }
386
- ]
453
+ ],
454
+ "type": "game-hud"
387
455
  },
388
456
  {
389
- "type": "button",
390
457
  "label": "Attack",
391
- "event": "ATTACK",
458
+ "icon": "swords",
459
+ "type": "button",
392
460
  "variant": "primary",
393
- "icon": "swords"
461
+ "event": "ATTACK"
394
462
  }
395
- ]
463
+ ],
464
+ "type": "stack",
465
+ "align": "center",
466
+ "gap": "lg",
467
+ "direction": "vertical"
396
468
  }
397
469
  ]
398
470
  ]
399
471
  }
400
472
  ]
401
- }
473
+ },
474
+ "scope": "instance"
402
475
  }
403
476
  ],
404
477
  "pages": [
@@ -414,4 +487,4 @@
414
487
  ]
415
488
  }
416
489
  ]
417
- }
490
+ }