@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-service-custom-api-tester",
3
3
  "version": "1.0.0",
4
- "description": "Unified API tester molecule that exercises all 4 custom REST auth patterns (header API key, bearer token, query param API key, no auth) with a tab selector. Single entity, single trait, 4 call events. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-service-custom-api-tester as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceCustomApiTesterOrbital",
@@ -55,7 +55,7 @@
55
55
  {
56
56
  "name": "statusCode",
57
57
  "type": "number",
58
- "default": 0
58
+ "default": 0.0
59
59
  },
60
60
  {
61
61
  "name": "authType",
@@ -76,8 +76,80 @@
76
76
  "traits": [
77
77
  {
78
78
  "name": "ServiceCustomApiTesterApiTester",
79
- "linkedEntity": "ServiceCustomApiTester",
80
79
  "category": "interaction",
80
+ "linkedEntity": "ServiceCustomApiTester",
81
+ "emits": [
82
+ {
83
+ "event": "ServiceCustomApiTesterLoaded",
84
+ "description": "Fired when ServiceCustomApiTester finishes loading",
85
+ "scope": "internal",
86
+ "payload": [
87
+ {
88
+ "name": "id",
89
+ "type": "string"
90
+ },
91
+ {
92
+ "name": "name",
93
+ "type": "string"
94
+ },
95
+ {
96
+ "name": "description",
97
+ "type": "string"
98
+ },
99
+ {
100
+ "name": "status",
101
+ "type": "string"
102
+ },
103
+ {
104
+ "name": "createdAt",
105
+ "type": "string"
106
+ },
107
+ {
108
+ "name": "endpoint",
109
+ "type": "string"
110
+ },
111
+ {
112
+ "name": "method",
113
+ "type": "string"
114
+ },
115
+ {
116
+ "name": "requestBody",
117
+ "type": "string"
118
+ },
119
+ {
120
+ "name": "responseData",
121
+ "type": "string"
122
+ },
123
+ {
124
+ "name": "statusCode",
125
+ "type": "number"
126
+ },
127
+ {
128
+ "name": "authType",
129
+ "type": "string"
130
+ },
131
+ {
132
+ "name": "callStatus",
133
+ "type": "string"
134
+ },
135
+ {
136
+ "name": "error",
137
+ "type": "string"
138
+ }
139
+ ]
140
+ },
141
+ {
142
+ "event": "ServiceCustomApiTesterLoadFailed",
143
+ "description": "Fired when ServiceCustomApiTester fails to load",
144
+ "scope": "internal",
145
+ "payload": [
146
+ {
147
+ "name": "message",
148
+ "type": "string"
149
+ }
150
+ ]
151
+ }
152
+ ],
81
153
  "stateMachine": {
82
154
  "states": [
83
155
  {
@@ -101,23 +173,23 @@
101
173
  },
102
174
  {
103
175
  "key": "CALL_HEADER_API",
104
- "name": "Call Header API"
176
+ "name": "Call Header Api"
105
177
  },
106
178
  {
107
179
  "key": "CALL_BEARER_API",
108
- "name": "Call Bearer API"
180
+ "name": "Call Bearer Api"
109
181
  },
110
182
  {
111
183
  "key": "CALL_QUERY_API",
112
- "name": "Call Query API"
184
+ "name": "Call Query Api"
113
185
  },
114
186
  {
115
187
  "key": "CALL_NOAUTH_API",
116
- "name": "Call No-Auth API"
188
+ "name": "Call Noauth Api"
117
189
  },
118
190
  {
119
191
  "key": "API_RESPONSE",
120
- "name": "API Response",
192
+ "name": "Api Response",
121
193
  "payload": [
122
194
  {
123
195
  "name": "data",
@@ -142,13 +214,27 @@
142
214
  }
143
215
  ]
144
216
  },
217
+ {
218
+ "key": "RESET",
219
+ "name": "Reset"
220
+ },
145
221
  {
146
222
  "key": "RETRY",
147
223
  "name": "Retry"
148
224
  },
149
225
  {
150
- "key": "RESET",
151
- "name": "Reset"
226
+ "key": "ServiceCustomApiTesterLoaded",
227
+ "name": "ServiceCustomApiTester loaded"
228
+ },
229
+ {
230
+ "key": "ServiceCustomApiTesterLoadFailed",
231
+ "name": "ServiceCustomApiTester load failed",
232
+ "payload": [
233
+ {
234
+ "name": "message",
235
+ "type": "string"
236
+ }
237
+ ]
152
238
  }
153
239
  ],
154
240
  "transitions": [
@@ -159,37 +245,37 @@
159
245
  "effects": [
160
246
  [
161
247
  "fetch",
162
- "ServiceCustomApiTester"
248
+ "ServiceCustomApiTester",
249
+ {
250
+ "emit": {
251
+ "failure": "ServiceCustomApiTesterLoadFailed",
252
+ "success": "ServiceCustomApiTesterLoaded"
253
+ }
254
+ }
163
255
  ],
164
256
  [
165
257
  "render-ui",
166
258
  "main",
167
259
  {
168
- "type": "stack",
169
- "direction": "vertical",
170
- "gap": "lg",
171
- "align": "center",
172
260
  "children": [
173
261
  {
174
- "type": "icon",
175
262
  "name": "globe",
263
+ "type": "icon",
176
264
  "size": "lg"
177
265
  },
178
266
  {
179
- "type": "typography",
180
267
  "content": "Unified API Tester",
268
+ "type": "typography",
181
269
  "variant": "h2"
182
270
  },
183
271
  {
272
+ "bind": "@entity.endpoint",
184
273
  "type": "input",
185
274
  "field": "endpoint",
186
- "placeholder": "/users",
187
- "bind": "@entity.endpoint"
275
+ "placeholder": "/users"
188
276
  },
189
277
  {
190
- "type": "select",
191
278
  "field": "method",
192
- "bind": "@entity.method",
193
279
  "options": [
194
280
  {
195
281
  "label": "GET",
@@ -207,7 +293,9 @@
207
293
  "label": "DELETE",
208
294
  "value": "DELETE"
209
295
  }
210
- ]
296
+ ],
297
+ "type": "select",
298
+ "bind": "@entity.method"
211
299
  },
212
300
  {
213
301
  "type": "textarea",
@@ -225,41 +313,45 @@
225
313
  },
226
314
  {
227
315
  "type": "stack",
228
- "direction": "horizontal",
229
- "gap": "sm",
230
316
  "justify": "center",
231
317
  "children": [
232
318
  {
233
- "type": "button",
234
319
  "label": "Header API Key",
235
- "event": "CALL_HEADER_API",
236
320
  "variant": "primary",
237
- "icon": "key"
321
+ "icon": "key",
322
+ "event": "CALL_HEADER_API",
323
+ "type": "button"
238
324
  },
239
325
  {
240
326
  "type": "button",
327
+ "icon": "shield",
241
328
  "label": "Bearer Token",
242
- "event": "CALL_BEARER_API",
243
329
  "variant": "primary",
244
- "icon": "shield"
330
+ "event": "CALL_BEARER_API"
245
331
  },
246
332
  {
247
333
  "type": "button",
248
- "label": "Query Param",
249
- "event": "CALL_QUERY_API",
250
334
  "variant": "primary",
251
- "icon": "search"
335
+ "icon": "search",
336
+ "label": "Query Param",
337
+ "event": "CALL_QUERY_API"
252
338
  },
253
339
  {
254
340
  "type": "button",
255
- "label": "No Auth",
256
341
  "event": "CALL_NOAUTH_API",
342
+ "label": "No Auth",
257
343
  "variant": "primary",
258
344
  "icon": "unlock"
259
345
  }
260
- ]
346
+ ],
347
+ "gap": "sm",
348
+ "direction": "horizontal"
261
349
  }
262
- ]
350
+ ],
351
+ "gap": "lg",
352
+ "type": "stack",
353
+ "align": "center",
354
+ "direction": "vertical"
263
355
  }
264
356
  ]
265
357
  ]
@@ -279,8 +371,8 @@
279
371
  "main",
280
372
  {
281
373
  "type": "loading-state",
282
- "title": "Calling API...",
283
- "message": "Sending request to servicecustomapitester endpoint..."
374
+ "message": "Sending request to servicecustomapitester endpoint...",
375
+ "title": "Calling API..."
284
376
  }
285
377
  ],
286
378
  [
@@ -288,9 +380,9 @@
288
380
  "custom-header-api",
289
381
  "execute",
290
382
  {
383
+ "body": "@entity.requestBody",
291
384
  "endpoint": "@entity.endpoint",
292
- "method": "@entity.method",
293
- "body": "@entity.requestBody"
385
+ "method": "@entity.method"
294
386
  }
295
387
  ]
296
388
  ]
@@ -309,9 +401,9 @@
309
401
  "render-ui",
310
402
  "main",
311
403
  {
404
+ "message": "Sending request to servicecustomapitester endpoint...",
312
405
  "type": "loading-state",
313
- "title": "Calling API...",
314
- "message": "Sending request to servicecustomapitester endpoint..."
406
+ "title": "Calling API..."
315
407
  }
316
408
  ],
317
409
  [
@@ -350,8 +442,8 @@
350
442
  "custom-query-api",
351
443
  "execute",
352
444
  {
353
- "endpoint": "@entity.endpoint",
354
445
  "method": "@entity.method",
446
+ "endpoint": "@entity.endpoint",
355
447
  "body": "@entity.requestBody"
356
448
  }
357
449
  ]
@@ -381,8 +473,8 @@
381
473
  "custom-noauth-api",
382
474
  "execute",
383
475
  {
384
- "endpoint": "@entity.endpoint",
385
476
  "method": "@entity.method",
477
+ "endpoint": "@entity.endpoint",
386
478
  "body": "@entity.requestBody"
387
479
  }
388
480
  ]
@@ -408,14 +500,11 @@
408
500
  "main",
409
501
  {
410
502
  "type": "stack",
411
- "direction": "vertical",
412
- "gap": "lg",
413
- "align": "center",
414
503
  "children": [
415
504
  {
505
+ "size": "lg",
416
506
  "type": "icon",
417
- "name": "check-circle",
418
- "size": "lg"
507
+ "name": "check-circle"
419
508
  },
420
509
  {
421
510
  "type": "typography",
@@ -434,9 +523,9 @@
434
523
  "variant": "info"
435
524
  },
436
525
  {
437
- "type": "badge",
438
526
  "content": "@entity.statusCode",
439
- "variant": "info"
527
+ "variant": "info",
528
+ "type": "badge"
440
529
  }
441
530
  ]
442
531
  },
@@ -446,13 +535,16 @@
446
535
  "language": "json"
447
536
  },
448
537
  {
449
- "type": "button",
450
- "label": "New Request",
451
538
  "event": "RESET",
452
539
  "variant": "ghost",
453
- "icon": "rotate-ccw"
540
+ "icon": "rotate-ccw",
541
+ "type": "button",
542
+ "label": "New Request"
454
543
  }
455
- ]
544
+ ],
545
+ "gap": "lg",
546
+ "align": "center",
547
+ "direction": "vertical"
456
548
  }
457
549
  ]
458
550
  ]
@@ -480,23 +572,21 @@
480
572
  ]
481
573
  },
482
574
  {
483
- "from": "error",
575
+ "from": "complete",
484
576
  "to": "idle",
485
- "event": "RETRY",
577
+ "event": "RESET",
486
578
  "effects": [
487
579
  [
488
580
  "render-ui",
489
581
  "main",
490
582
  {
491
- "type": "stack",
492
- "direction": "vertical",
493
- "gap": "lg",
494
583
  "align": "center",
584
+ "gap": "lg",
495
585
  "children": [
496
586
  {
497
- "type": "icon",
498
587
  "name": "globe",
499
- "size": "lg"
588
+ "size": "lg",
589
+ "type": "icon"
500
590
  },
501
591
  {
502
592
  "type": "typography",
@@ -505,63 +595,62 @@
505
595
  },
506
596
  {
507
597
  "type": "input",
598
+ "bind": "@entity.endpoint",
508
599
  "field": "endpoint",
509
- "placeholder": "/users",
510
- "bind": "@entity.endpoint"
600
+ "placeholder": "/users"
511
601
  },
512
602
  {
513
- "type": "select",
514
603
  "field": "method",
515
604
  "bind": "@entity.method",
605
+ "type": "select",
516
606
  "options": [
517
607
  {
518
608
  "label": "GET",
519
609
  "value": "GET"
520
610
  },
521
611
  {
522
- "label": "POST",
523
- "value": "POST"
612
+ "value": "POST",
613
+ "label": "POST"
524
614
  },
525
615
  {
526
616
  "label": "PUT",
527
617
  "value": "PUT"
528
618
  },
529
619
  {
530
- "label": "DELETE",
531
- "value": "DELETE"
620
+ "value": "DELETE",
621
+ "label": "DELETE"
532
622
  }
533
623
  ]
534
624
  },
535
625
  {
536
- "type": "textarea",
537
626
  "field": "requestBody",
627
+ "bind": "@entity.requestBody",
538
628
  "placeholder": "Request body (JSON)",
539
- "bind": "@entity.requestBody"
629
+ "type": "textarea"
540
630
  },
541
631
  {
542
632
  "type": "divider"
543
633
  },
544
634
  {
545
- "type": "typography",
546
635
  "content": "Select Auth Type",
547
- "variant": "h4"
636
+ "variant": "h4",
637
+ "type": "typography"
548
638
  },
549
639
  {
550
640
  "type": "stack",
551
641
  "direction": "horizontal",
552
642
  "gap": "sm",
553
- "justify": "center",
554
643
  "children": [
555
644
  {
556
645
  "type": "button",
557
- "label": "Header API Key",
558
646
  "event": "CALL_HEADER_API",
647
+ "label": "Header API Key",
559
648
  "variant": "primary",
560
649
  "icon": "key"
561
650
  },
562
651
  {
563
- "type": "button",
564
652
  "label": "Bearer Token",
653
+ "type": "button",
565
654
  "event": "CALL_BEARER_API",
566
655
  "variant": "primary",
567
656
  "icon": "shield"
@@ -574,52 +663,51 @@
574
663
  "icon": "search"
575
664
  },
576
665
  {
577
- "type": "button",
578
- "label": "No Auth",
666
+ "icon": "unlock",
579
667
  "event": "CALL_NOAUTH_API",
580
- "variant": "primary",
581
- "icon": "unlock"
668
+ "label": "No Auth",
669
+ "type": "button",
670
+ "variant": "primary"
582
671
  }
583
- ]
672
+ ],
673
+ "justify": "center"
584
674
  }
585
- ]
675
+ ],
676
+ "direction": "vertical",
677
+ "type": "stack"
586
678
  }
587
679
  ]
588
680
  ]
589
681
  },
590
682
  {
591
- "from": "complete",
683
+ "from": "error",
592
684
  "to": "idle",
593
- "event": "RESET",
685
+ "event": "RETRY",
594
686
  "effects": [
595
687
  [
596
688
  "render-ui",
597
689
  "main",
598
690
  {
599
- "type": "stack",
600
- "direction": "vertical",
601
- "gap": "lg",
602
- "align": "center",
603
691
  "children": [
604
692
  {
693
+ "size": "lg",
605
694
  "type": "icon",
606
- "name": "globe",
607
- "size": "lg"
695
+ "name": "globe"
608
696
  },
609
697
  {
698
+ "variant": "h2",
610
699
  "type": "typography",
611
- "content": "Unified API Tester",
612
- "variant": "h2"
700
+ "content": "Unified API Tester"
613
701
  },
614
702
  {
615
703
  "type": "input",
704
+ "bind": "@entity.endpoint",
616
705
  "field": "endpoint",
617
- "placeholder": "/users",
618
- "bind": "@entity.endpoint"
706
+ "placeholder": "/users"
619
707
  },
620
708
  {
621
- "type": "select",
622
709
  "field": "method",
710
+ "type": "select",
623
711
  "bind": "@entity.method",
624
712
  "options": [
625
713
  {
@@ -631,8 +719,8 @@
631
719
  "value": "POST"
632
720
  },
633
721
  {
634
- "label": "PUT",
635
- "value": "PUT"
722
+ "value": "PUT",
723
+ "label": "PUT"
636
724
  },
637
725
  {
638
726
  "label": "DELETE",
@@ -643,54 +731,58 @@
643
731
  {
644
732
  "type": "textarea",
645
733
  "field": "requestBody",
646
- "placeholder": "Request body (JSON)",
647
- "bind": "@entity.requestBody"
734
+ "bind": "@entity.requestBody",
735
+ "placeholder": "Request body (JSON)"
648
736
  },
649
737
  {
650
738
  "type": "divider"
651
739
  },
652
740
  {
653
- "type": "typography",
654
741
  "content": "Select Auth Type",
742
+ "type": "typography",
655
743
  "variant": "h4"
656
744
  },
657
745
  {
658
- "type": "stack",
659
- "direction": "horizontal",
660
746
  "gap": "sm",
747
+ "type": "stack",
661
748
  "justify": "center",
662
749
  "children": [
663
750
  {
664
- "type": "button",
665
751
  "label": "Header API Key",
752
+ "icon": "key",
666
753
  "event": "CALL_HEADER_API",
667
- "variant": "primary",
668
- "icon": "key"
754
+ "type": "button",
755
+ "variant": "primary"
669
756
  },
670
757
  {
758
+ "icon": "shield",
671
759
  "type": "button",
672
760
  "label": "Bearer Token",
673
761
  "event": "CALL_BEARER_API",
674
- "variant": "primary",
675
- "icon": "shield"
762
+ "variant": "primary"
676
763
  },
677
764
  {
765
+ "variant": "primary",
678
766
  "type": "button",
679
- "label": "Query Param",
680
767
  "event": "CALL_QUERY_API",
681
- "variant": "primary",
682
- "icon": "search"
768
+ "icon": "search",
769
+ "label": "Query Param"
683
770
  },
684
771
  {
685
- "type": "button",
772
+ "icon": "unlock",
686
773
  "label": "No Auth",
687
774
  "event": "CALL_NOAUTH_API",
688
- "variant": "primary",
689
- "icon": "unlock"
775
+ "type": "button",
776
+ "variant": "primary"
690
777
  }
691
- ]
778
+ ],
779
+ "direction": "horizontal"
692
780
  }
693
- ]
781
+ ],
782
+ "direction": "vertical",
783
+ "align": "center",
784
+ "type": "stack",
785
+ "gap": "lg"
694
786
  }
695
787
  ]
696
788
  ]
@@ -704,39 +796,33 @@
704
796
  "render-ui",
705
797
  "main",
706
798
  {
707
- "type": "stack",
708
- "direction": "vertical",
709
- "gap": "lg",
710
- "align": "center",
711
799
  "children": [
712
800
  {
713
- "type": "icon",
714
801
  "name": "globe",
715
- "size": "lg"
802
+ "size": "lg",
803
+ "type": "icon"
716
804
  },
717
805
  {
806
+ "variant": "h2",
718
807
  "type": "typography",
719
- "content": "Unified API Tester",
720
- "variant": "h2"
808
+ "content": "Unified API Tester"
721
809
  },
722
810
  {
723
- "type": "input",
724
- "field": "endpoint",
811
+ "bind": "@entity.endpoint",
725
812
  "placeholder": "/users",
726
- "bind": "@entity.endpoint"
813
+ "type": "input",
814
+ "field": "endpoint"
727
815
  },
728
816
  {
729
817
  "type": "select",
730
- "field": "method",
731
- "bind": "@entity.method",
732
818
  "options": [
733
819
  {
734
- "label": "GET",
735
- "value": "GET"
820
+ "value": "GET",
821
+ "label": "GET"
736
822
  },
737
823
  {
738
- "label": "POST",
739
- "value": "POST"
824
+ "value": "POST",
825
+ "label": "POST"
740
826
  },
741
827
  {
742
828
  "label": "PUT",
@@ -746,12 +832,14 @@
746
832
  "label": "DELETE",
747
833
  "value": "DELETE"
748
834
  }
749
- ]
835
+ ],
836
+ "field": "method",
837
+ "bind": "@entity.method"
750
838
  },
751
839
  {
840
+ "placeholder": "Request body (JSON)",
752
841
  "type": "textarea",
753
842
  "field": "requestBody",
754
- "placeholder": "Request body (JSON)",
755
843
  "bind": "@entity.requestBody"
756
844
  },
757
845
  {
@@ -759,52 +847,57 @@
759
847
  },
760
848
  {
761
849
  "type": "typography",
762
- "content": "Select Auth Type",
763
- "variant": "h4"
850
+ "variant": "h4",
851
+ "content": "Select Auth Type"
764
852
  },
765
853
  {
766
854
  "type": "stack",
767
855
  "direction": "horizontal",
768
- "gap": "sm",
769
856
  "justify": "center",
857
+ "gap": "sm",
770
858
  "children": [
771
859
  {
860
+ "icon": "key",
861
+ "event": "CALL_HEADER_API",
772
862
  "type": "button",
773
863
  "label": "Header API Key",
774
- "event": "CALL_HEADER_API",
775
- "variant": "primary",
776
- "icon": "key"
864
+ "variant": "primary"
777
865
  },
778
866
  {
779
- "type": "button",
780
867
  "label": "Bearer Token",
868
+ "type": "button",
869
+ "icon": "shield",
781
870
  "event": "CALL_BEARER_API",
782
- "variant": "primary",
783
- "icon": "shield"
871
+ "variant": "primary"
784
872
  },
785
873
  {
874
+ "icon": "search",
875
+ "event": "CALL_QUERY_API",
786
876
  "type": "button",
787
877
  "label": "Query Param",
788
- "event": "CALL_QUERY_API",
789
- "variant": "primary",
790
- "icon": "search"
878
+ "variant": "primary"
791
879
  },
792
880
  {
793
- "type": "button",
794
- "label": "No Auth",
795
- "event": "CALL_NOAUTH_API",
796
881
  "variant": "primary",
797
- "icon": "unlock"
882
+ "icon": "unlock",
883
+ "label": "No Auth",
884
+ "type": "button",
885
+ "event": "CALL_NOAUTH_API"
798
886
  }
799
887
  ]
800
888
  }
801
- ]
889
+ ],
890
+ "type": "stack",
891
+ "gap": "lg",
892
+ "align": "center",
893
+ "direction": "vertical"
802
894
  }
803
895
  ]
804
896
  ]
805
897
  }
806
898
  ]
807
- }
899
+ },
900
+ "scope": "instance"
808
901
  }
809
902
  ],
810
903
  "pages": [
@@ -820,4 +913,4 @@
820
913
  ]
821
914
  }
822
915
  ]
823
- }
916
+ }