@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-isometric-canvas",
3
3
  "version": "1.0.0",
4
- "description": "Isometric game renderer atom using the `isometric-canvas` pattern. Renders tiles, units, and features on an isometric grid. Handles tile clicks, unit clicks, and hover events.",
4
+ "description": "std-isometric-canvas as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "IsometricWorldOrbital",
@@ -37,352 +37,84 @@
37
37
  },
38
38
  {
39
39
  "name": "tiles",
40
- "type": "array"
40
+ "type": "array",
41
+ "items": {
42
+ "type": "string"
43
+ }
41
44
  },
42
45
  {
43
46
  "name": "units",
44
- "type": "array"
47
+ "type": "array",
48
+ "items": {
49
+ "type": "string"
50
+ }
45
51
  },
46
52
  {
47
53
  "name": "features",
48
- "type": "array"
49
- }
50
- ],
51
- "instances": [
52
- {
53
- "id": "board",
54
- "tiles": [
55
- {
56
- "x": 0,
57
- "y": 0,
58
- "terrain": "grass"
59
- },
60
- {
61
- "x": 1,
62
- "y": 0,
63
- "terrain": "dirt"
64
- },
65
- {
66
- "x": 2,
67
- "y": 0,
68
- "terrain": "stone"
69
- },
70
- {
71
- "x": 3,
72
- "y": 0,
73
- "terrain": "water"
74
- },
75
- {
76
- "x": 4,
77
- "y": 0,
78
- "terrain": "sand"
79
- },
80
- {
81
- "x": 5,
82
- "y": 0,
83
- "terrain": "grass"
84
- },
85
- {
86
- "x": 6,
87
- "y": 0,
88
- "terrain": "dirt"
89
- },
90
- {
91
- "x": 7,
92
- "y": 0,
93
- "terrain": "stone"
94
- },
95
- {
96
- "x": 0,
97
- "y": 1,
98
- "terrain": "dirt"
99
- },
100
- {
101
- "x": 1,
102
- "y": 1,
103
- "terrain": "stone"
104
- },
105
- {
106
- "x": 2,
107
- "y": 1,
108
- "terrain": "water"
109
- },
110
- {
111
- "x": 3,
112
- "y": 1,
113
- "terrain": "sand"
114
- },
115
- {
116
- "x": 4,
117
- "y": 1,
118
- "terrain": "grass"
119
- },
120
- {
121
- "x": 5,
122
- "y": 1,
123
- "terrain": "dirt"
124
- },
125
- {
126
- "x": 6,
127
- "y": 1,
128
- "terrain": "stone"
129
- },
130
- {
131
- "x": 7,
132
- "y": 1,
133
- "terrain": "water"
134
- },
135
- {
136
- "x": 0,
137
- "y": 2,
138
- "terrain": "stone"
139
- },
140
- {
141
- "x": 1,
142
- "y": 2,
143
- "terrain": "water"
144
- },
145
- {
146
- "x": 2,
147
- "y": 2,
148
- "terrain": "sand"
149
- },
150
- {
151
- "x": 3,
152
- "y": 2,
153
- "terrain": "grass"
154
- },
155
- {
156
- "x": 4,
157
- "y": 2,
158
- "terrain": "dirt"
159
- },
160
- {
161
- "x": 5,
162
- "y": 2,
163
- "terrain": "stone"
164
- },
165
- {
166
- "x": 6,
167
- "y": 2,
168
- "terrain": "water"
169
- },
170
- {
171
- "x": 7,
172
- "y": 2,
173
- "terrain": "sand"
174
- },
175
- {
176
- "x": 0,
177
- "y": 3,
178
- "terrain": "water"
179
- },
180
- {
181
- "x": 1,
182
- "y": 3,
183
- "terrain": "sand"
184
- },
185
- {
186
- "x": 2,
187
- "y": 3,
188
- "terrain": "grass"
189
- },
190
- {
191
- "x": 3,
192
- "y": 3,
193
- "terrain": "dirt"
194
- },
195
- {
196
- "x": 4,
197
- "y": 3,
198
- "terrain": "stone"
199
- },
200
- {
201
- "x": 5,
202
- "y": 3,
203
- "terrain": "water"
204
- },
205
- {
206
- "x": 6,
207
- "y": 3,
208
- "terrain": "sand"
209
- },
210
- {
211
- "x": 7,
212
- "y": 3,
213
- "terrain": "grass"
214
- },
215
- {
216
- "x": 0,
217
- "y": 4,
218
- "terrain": "sand"
219
- },
220
- {
221
- "x": 1,
222
- "y": 4,
223
- "terrain": "grass"
224
- },
225
- {
226
- "x": 2,
227
- "y": 4,
228
- "terrain": "dirt"
229
- },
230
- {
231
- "x": 3,
232
- "y": 4,
233
- "terrain": "stone"
234
- },
235
- {
236
- "x": 4,
237
- "y": 4,
238
- "terrain": "water"
239
- },
240
- {
241
- "x": 5,
242
- "y": 4,
243
- "terrain": "sand"
244
- },
245
- {
246
- "x": 6,
247
- "y": 4,
248
- "terrain": "grass"
249
- },
250
- {
251
- "x": 7,
252
- "y": 4,
253
- "terrain": "dirt"
254
- },
255
- {
256
- "x": 0,
257
- "y": 5,
258
- "terrain": "grass"
259
- },
260
- {
261
- "x": 1,
262
- "y": 5,
263
- "terrain": "dirt"
264
- },
265
- {
266
- "x": 2,
267
- "y": 5,
268
- "terrain": "stone"
269
- },
270
- {
271
- "x": 3,
272
- "y": 5,
273
- "terrain": "water"
274
- },
275
- {
276
- "x": 4,
277
- "y": 5,
278
- "terrain": "sand"
279
- },
280
- {
281
- "x": 5,
282
- "y": 5,
283
- "terrain": "grass"
284
- },
285
- {
286
- "x": 6,
287
- "y": 5,
288
- "terrain": "dirt"
289
- },
290
- {
291
- "x": 7,
292
- "y": 5,
293
- "terrain": "stone"
294
- },
295
- {
296
- "x": 0,
297
- "y": 6,
298
- "terrain": "dirt"
299
- },
300
- {
301
- "x": 1,
302
- "y": 6,
303
- "terrain": "stone"
304
- },
305
- {
306
- "x": 2,
307
- "y": 6,
308
- "terrain": "water"
309
- },
310
- {
311
- "x": 3,
312
- "y": 6,
313
- "terrain": "sand"
314
- },
315
- {
316
- "x": 4,
317
- "y": 6,
318
- "terrain": "grass"
319
- },
320
- {
321
- "x": 5,
322
- "y": 6,
323
- "terrain": "dirt"
324
- },
325
- {
326
- "x": 6,
327
- "y": 6,
328
- "terrain": "stone"
329
- },
330
- {
331
- "x": 7,
332
- "y": 6,
333
- "terrain": "water"
334
- },
335
- {
336
- "x": 0,
337
- "y": 7,
338
- "terrain": "stone"
339
- },
340
- {
341
- "x": 1,
342
- "y": 7,
343
- "terrain": "water"
344
- },
345
- {
346
- "x": 2,
347
- "y": 7,
348
- "terrain": "sand"
349
- },
350
- {
351
- "x": 3,
352
- "y": 7,
353
- "terrain": "grass"
354
- },
355
- {
356
- "x": 4,
357
- "y": 7,
358
- "terrain": "dirt"
359
- },
360
- {
361
- "x": 5,
362
- "y": 7,
363
- "terrain": "stone"
364
- },
365
- {
366
- "x": 6,
367
- "y": 7,
368
- "terrain": "water"
369
- },
370
- {
371
- "x": 7,
372
- "y": 7,
373
- "terrain": "sand"
374
- }
375
- ],
376
- "units": [],
377
- "features": []
54
+ "type": "array",
55
+ "items": {
56
+ "type": "string"
57
+ }
378
58
  }
379
59
  ]
380
60
  },
381
61
  "traits": [
382
62
  {
383
63
  "name": "IsometricWorldIsometricCanvas",
384
- "linkedEntity": "IsometricWorld",
385
64
  "category": "interaction",
65
+ "linkedEntity": "IsometricWorld",
66
+ "emits": [
67
+ {
68
+ "event": "IsometricWorldLoaded",
69
+ "description": "Fired when IsometricWorld finishes loading",
70
+ "scope": "internal",
71
+ "payload": [
72
+ {
73
+ "name": "id",
74
+ "type": "string"
75
+ },
76
+ {
77
+ "name": "name",
78
+ "type": "string"
79
+ },
80
+ {
81
+ "name": "description",
82
+ "type": "string"
83
+ },
84
+ {
85
+ "name": "status",
86
+ "type": "string"
87
+ },
88
+ {
89
+ "name": "createdAt",
90
+ "type": "string"
91
+ },
92
+ {
93
+ "name": "tiles",
94
+ "type": "[string]"
95
+ },
96
+ {
97
+ "name": "units",
98
+ "type": "[string]"
99
+ },
100
+ {
101
+ "name": "features",
102
+ "type": "[string]"
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "event": "IsometricWorldLoadFailed",
108
+ "description": "Fired when IsometricWorld fails to load",
109
+ "scope": "internal",
110
+ "payload": [
111
+ {
112
+ "name": "message",
113
+ "type": "string"
114
+ }
115
+ ]
116
+ }
117
+ ],
386
118
  "stateMachine": {
387
119
  "states": [
388
120
  {
@@ -431,6 +163,20 @@
431
163
  {
432
164
  "key": "DESELECT",
433
165
  "name": "Deselect"
166
+ },
167
+ {
168
+ "key": "IsometricWorldLoaded",
169
+ "name": "IsometricWorld loaded"
170
+ },
171
+ {
172
+ "key": "IsometricWorldLoadFailed",
173
+ "name": "IsometricWorld load failed",
174
+ "payload": [
175
+ {
176
+ "name": "message",
177
+ "type": "string"
178
+ }
179
+ ]
434
180
  }
435
181
  ],
436
182
  "transitions": [
@@ -441,25 +187,31 @@
441
187
  "effects": [
442
188
  [
443
189
  "fetch",
444
- "IsometricWorld"
190
+ "IsometricWorld",
191
+ {
192
+ "emit": {
193
+ "failure": "IsometricWorldLoadFailed",
194
+ "success": "IsometricWorldLoaded"
195
+ }
196
+ }
445
197
  ],
446
198
  [
447
199
  "render-ui",
448
200
  "main",
449
201
  {
450
- "type": "isometric-canvas",
451
- "tiles": "@entity.tiles",
452
- "boardWidth": 8,
453
- "boardHeight": 8,
454
- "scale": 1,
455
- "unitScale": 2,
456
- "debug": false,
457
- "showMinimap": false,
202
+ "tileHoverEvent": "TILE_HOVER",
203
+ "tileLeaveEvent": "TILE_LEAVE",
458
204
  "enableCamera": true,
205
+ "unitScale": 2.0,
206
+ "tiles": "@entity.tiles",
459
207
  "tileClickEvent": "TILE_CLICK",
460
208
  "unitClickEvent": "UNIT_CLICK",
461
- "tileHoverEvent": "TILE_HOVER",
462
- "tileLeaveEvent": "TILE_LEAVE"
209
+ "boardWidth": 8.0,
210
+ "type": "isometric-canvas",
211
+ "scale": 1.0,
212
+ "showMinimap": false,
213
+ "boardHeight": 8.0,
214
+ "debug": false
463
215
  }
464
216
  ]
465
217
  ]
@@ -473,19 +225,19 @@
473
225
  "render-ui",
474
226
  "main",
475
227
  {
228
+ "scale": 1.0,
229
+ "debug": false,
476
230
  "type": "isometric-canvas",
231
+ "unitClickEvent": "UNIT_CLICK",
232
+ "boardWidth": 8.0,
477
233
  "tiles": "@entity.tiles",
478
- "boardWidth": 8,
479
- "boardHeight": 8,
480
- "scale": 1,
481
- "unitScale": 2,
482
- "debug": false,
234
+ "boardHeight": 8.0,
235
+ "unitScale": 2.0,
483
236
  "showMinimap": false,
484
- "enableCamera": true,
485
- "tileClickEvent": "TILE_CLICK",
486
- "unitClickEvent": "UNIT_CLICK",
487
237
  "tileHoverEvent": "TILE_HOVER",
488
- "tileLeaveEvent": "TILE_LEAVE"
238
+ "tileClickEvent": "TILE_CLICK",
239
+ "tileLeaveEvent": "TILE_LEAVE",
240
+ "enableCamera": true
489
241
  }
490
242
  ]
491
243
  ]
@@ -499,23 +251,33 @@
499
251
  "render-ui",
500
252
  "main",
501
253
  {
502
- "type": "isometric-canvas",
254
+ "scale": 1.0,
503
255
  "tiles": "@entity.tiles",
504
- "boardWidth": 8,
505
- "boardHeight": 8,
506
- "scale": 1,
507
- "unitScale": 2,
508
- "debug": false,
256
+ "unitClickEvent": "UNIT_CLICK",
257
+ "boardWidth": 8.0,
258
+ "boardHeight": 8.0,
509
259
  "showMinimap": false,
260
+ "tileLeaveEvent": "TILE_LEAVE",
261
+ "tileHoverEvent": "TILE_HOVER",
262
+ "unitScale": 2.0,
510
263
  "enableCamera": true,
511
264
  "tileClickEvent": "TILE_CLICK",
512
- "unitClickEvent": "UNIT_CLICK",
513
- "tileHoverEvent": "TILE_HOVER",
514
- "tileLeaveEvent": "TILE_LEAVE"
265
+ "debug": false,
266
+ "type": "isometric-canvas"
515
267
  }
516
268
  ]
517
269
  ]
518
270
  },
271
+ {
272
+ "from": "idle",
273
+ "to": "idle",
274
+ "event": "TILE_HOVER"
275
+ },
276
+ {
277
+ "from": "idle",
278
+ "to": "idle",
279
+ "event": "TILE_LEAVE"
280
+ },
519
281
  {
520
282
  "from": "active",
521
283
  "to": "active",
@@ -525,19 +287,19 @@
525
287
  "render-ui",
526
288
  "main",
527
289
  {
528
- "type": "isometric-canvas",
529
- "tiles": "@entity.tiles",
530
- "boardWidth": 8,
531
- "boardHeight": 8,
532
- "scale": 1,
533
- "unitScale": 2,
534
290
  "debug": false,
291
+ "scale": 1.0,
292
+ "tiles": "@entity.tiles",
293
+ "tileHoverEvent": "TILE_HOVER",
535
294
  "showMinimap": false,
536
295
  "enableCamera": true,
537
296
  "tileClickEvent": "TILE_CLICK",
297
+ "tileLeaveEvent": "TILE_LEAVE",
298
+ "unitScale": 2.0,
538
299
  "unitClickEvent": "UNIT_CLICK",
539
- "tileHoverEvent": "TILE_HOVER",
540
- "tileLeaveEvent": "TILE_LEAVE"
300
+ "boardWidth": 8.0,
301
+ "boardHeight": 8.0,
302
+ "type": "isometric-canvas"
541
303
  }
542
304
  ]
543
305
  ]
@@ -551,19 +313,19 @@
551
313
  "render-ui",
552
314
  "main",
553
315
  {
554
- "type": "isometric-canvas",
316
+ "enableCamera": true,
555
317
  "tiles": "@entity.tiles",
556
- "boardWidth": 8,
557
- "boardHeight": 8,
558
- "scale": 1,
559
- "unitScale": 2,
318
+ "boardWidth": 8.0,
319
+ "unitClickEvent": "UNIT_CLICK",
320
+ "scale": 1.0,
321
+ "unitScale": 2.0,
322
+ "boardHeight": 8.0,
560
323
  "debug": false,
561
- "showMinimap": false,
562
- "enableCamera": true,
563
324
  "tileClickEvent": "TILE_CLICK",
564
- "unitClickEvent": "UNIT_CLICK",
325
+ "showMinimap": false,
565
326
  "tileHoverEvent": "TILE_HOVER",
566
- "tileLeaveEvent": "TILE_LEAVE"
327
+ "tileLeaveEvent": "TILE_LEAVE",
328
+ "type": "isometric-canvas"
567
329
  }
568
330
  ]
569
331
  ]
@@ -571,26 +333,12 @@
571
333
  {
572
334
  "from": "active",
573
335
  "to": "active",
574
- "event": "TILE_HOVER",
575
- "effects": []
576
- },
577
- {
578
- "from": "idle",
579
- "to": "idle",
580
- "event": "TILE_HOVER",
581
- "effects": []
336
+ "event": "TILE_HOVER"
582
337
  },
583
338
  {
584
339
  "from": "active",
585
340
  "to": "active",
586
- "event": "TILE_LEAVE",
587
- "effects": []
588
- },
589
- {
590
- "from": "idle",
591
- "to": "idle",
592
- "event": "TILE_LEAVE",
593
- "effects": []
341
+ "event": "TILE_LEAVE"
594
342
  },
595
343
  {
596
344
  "from": "active",
@@ -601,25 +349,26 @@
601
349
  "render-ui",
602
350
  "main",
603
351
  {
604
- "type": "isometric-canvas",
605
- "tiles": "@entity.tiles",
606
- "boardWidth": 8,
607
- "boardHeight": 8,
608
- "scale": 1,
609
- "unitScale": 2,
610
- "debug": false,
611
- "showMinimap": false,
612
352
  "enableCamera": true,
353
+ "boardWidth": 8.0,
354
+ "showMinimap": false,
355
+ "type": "isometric-canvas",
613
356
  "tileClickEvent": "TILE_CLICK",
357
+ "unitScale": 2.0,
358
+ "scale": 1.0,
359
+ "debug": false,
614
360
  "unitClickEvent": "UNIT_CLICK",
615
361
  "tileHoverEvent": "TILE_HOVER",
616
- "tileLeaveEvent": "TILE_LEAVE"
362
+ "tileLeaveEvent": "TILE_LEAVE",
363
+ "boardHeight": 8.0,
364
+ "tiles": "@entity.tiles"
617
365
  }
618
366
  ]
619
367
  ]
620
368
  }
621
369
  ]
622
- }
370
+ },
371
+ "scope": "instance"
623
372
  }
624
373
  ],
625
374
  "pages": [
@@ -635,4 +384,4 @@
635
384
  ]
636
385
  }
637
386
  ]
638
- }
387
+ }