@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-header",
3
3
  "version": "1.0.0",
4
- "description": "Custom REST API behavior with header-based API key authentication. Tests the schema-level service declaration pattern (no pre-built integration). Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-service-custom-header as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceCustomHeaderOrbital",
@@ -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": "callStatus",
@@ -71,8 +71,76 @@
71
71
  "traits": [
72
72
  {
73
73
  "name": "ServiceCustomHeaderCustomHeader",
74
- "linkedEntity": "ServiceCustomHeader",
75
74
  "category": "interaction",
75
+ "linkedEntity": "ServiceCustomHeader",
76
+ "emits": [
77
+ {
78
+ "event": "ServiceCustomHeaderLoaded",
79
+ "description": "Fired when ServiceCustomHeader finishes loading",
80
+ "scope": "internal",
81
+ "payload": [
82
+ {
83
+ "name": "id",
84
+ "type": "string"
85
+ },
86
+ {
87
+ "name": "name",
88
+ "type": "string"
89
+ },
90
+ {
91
+ "name": "description",
92
+ "type": "string"
93
+ },
94
+ {
95
+ "name": "status",
96
+ "type": "string"
97
+ },
98
+ {
99
+ "name": "createdAt",
100
+ "type": "string"
101
+ },
102
+ {
103
+ "name": "endpoint",
104
+ "type": "string"
105
+ },
106
+ {
107
+ "name": "method",
108
+ "type": "string"
109
+ },
110
+ {
111
+ "name": "requestBody",
112
+ "type": "string"
113
+ },
114
+ {
115
+ "name": "responseData",
116
+ "type": "string"
117
+ },
118
+ {
119
+ "name": "statusCode",
120
+ "type": "number"
121
+ },
122
+ {
123
+ "name": "callStatus",
124
+ "type": "string"
125
+ },
126
+ {
127
+ "name": "error",
128
+ "type": "string"
129
+ }
130
+ ]
131
+ },
132
+ {
133
+ "event": "ServiceCustomHeaderLoadFailed",
134
+ "description": "Fired when ServiceCustomHeader fails to load",
135
+ "scope": "internal",
136
+ "payload": [
137
+ {
138
+ "name": "message",
139
+ "type": "string"
140
+ }
141
+ ]
142
+ }
143
+ ],
76
144
  "stateMachine": {
77
145
  "states": [
78
146
  {
@@ -96,11 +164,11 @@
96
164
  },
97
165
  {
98
166
  "key": "CALL_API",
99
- "name": "Call API"
167
+ "name": "Call Api"
100
168
  },
101
169
  {
102
170
  "key": "API_RESPONSE",
103
- "name": "API Response",
171
+ "name": "Api Response",
104
172
  "payload": [
105
173
  {
106
174
  "name": "data",
@@ -125,13 +193,27 @@
125
193
  }
126
194
  ]
127
195
  },
196
+ {
197
+ "key": "RESET",
198
+ "name": "Reset"
199
+ },
128
200
  {
129
201
  "key": "RETRY",
130
202
  "name": "Retry"
131
203
  },
132
204
  {
133
- "key": "RESET",
134
- "name": "Reset"
205
+ "key": "ServiceCustomHeaderLoaded",
206
+ "name": "ServiceCustomHeader loaded"
207
+ },
208
+ {
209
+ "key": "ServiceCustomHeaderLoadFailed",
210
+ "name": "ServiceCustomHeader load failed",
211
+ "payload": [
212
+ {
213
+ "name": "message",
214
+ "type": "string"
215
+ }
216
+ ]
135
217
  }
136
218
  ],
137
219
  "transitions": [
@@ -142,7 +224,13 @@
142
224
  "effects": [
143
225
  [
144
226
  "fetch",
145
- "ServiceCustomHeader"
227
+ "ServiceCustomHeader",
228
+ {
229
+ "emit": {
230
+ "failure": "ServiceCustomHeaderLoadFailed",
231
+ "success": "ServiceCustomHeaderLoaded"
232
+ }
233
+ }
146
234
  ],
147
235
  [
148
236
  "render-ui",
@@ -150,29 +238,25 @@
150
238
  {
151
239
  "type": "stack",
152
240
  "direction": "vertical",
153
- "gap": "lg",
154
- "align": "center",
155
241
  "children": [
156
242
  {
157
- "type": "icon",
158
243
  "name": "globe",
244
+ "type": "icon",
159
245
  "size": "lg"
160
246
  },
161
247
  {
162
- "type": "typography",
163
248
  "content": "API Tester",
249
+ "type": "typography",
164
250
  "variant": "h2"
165
251
  },
166
252
  {
167
- "type": "input",
253
+ "bind": "@entity.endpoint",
168
254
  "field": "endpoint",
169
- "placeholder": "/users",
170
- "bind": "@entity.endpoint"
255
+ "type": "input",
256
+ "placeholder": "/users"
171
257
  },
172
258
  {
173
259
  "type": "select",
174
- "field": "method",
175
- "bind": "@entity.method",
176
260
  "options": [
177
261
  {
178
262
  "label": "GET",
@@ -190,22 +274,26 @@
190
274
  "label": "DELETE",
191
275
  "value": "DELETE"
192
276
  }
193
- ]
277
+ ],
278
+ "field": "method",
279
+ "bind": "@entity.method"
194
280
  },
195
281
  {
196
- "type": "textarea",
197
- "field": "requestBody",
198
282
  "placeholder": "JSON request body",
199
- "bind": "@entity.requestBody"
283
+ "bind": "@entity.requestBody",
284
+ "type": "textarea",
285
+ "field": "requestBody"
200
286
  },
201
287
  {
202
- "type": "button",
203
- "label": "Send Request",
288
+ "icon": "send",
204
289
  "event": "CALL_API",
205
- "variant": "primary",
206
- "icon": "send"
290
+ "label": "Send Request",
291
+ "type": "button",
292
+ "variant": "primary"
207
293
  }
208
- ]
294
+ ],
295
+ "align": "center",
296
+ "gap": "lg"
209
297
  }
210
298
  ]
211
299
  ]
@@ -219,8 +307,8 @@
219
307
  "render-ui",
220
308
  "main",
221
309
  {
222
- "type": "loading-state",
223
310
  "title": "Calling API...",
311
+ "type": "loading-state",
224
312
  "message": "Sending request to servicecustomheader endpoint..."
225
313
  }
226
314
  ],
@@ -229,9 +317,9 @@
229
317
  "custom-header-api",
230
318
  "execute",
231
319
  {
320
+ "body": "@entity.requestBody",
232
321
  "endpoint": "@entity.endpoint",
233
- "method": "@entity.method",
234
- "body": "@entity.requestBody"
322
+ "method": "@entity.method"
235
323
  }
236
324
  ]
237
325
  ]
@@ -255,39 +343,39 @@
255
343
  "render-ui",
256
344
  "main",
257
345
  {
258
- "type": "stack",
259
- "direction": "vertical",
260
346
  "gap": "lg",
261
- "align": "center",
262
347
  "children": [
263
348
  {
264
- "type": "icon",
265
349
  "name": "check-circle",
350
+ "type": "icon",
266
351
  "size": "lg"
267
352
  },
268
353
  {
354
+ "variant": "h2",
269
355
  "type": "typography",
270
- "content": "Response",
271
- "variant": "h2"
356
+ "content": "Response"
272
357
  },
273
358
  {
359
+ "variant": "info",
274
360
  "type": "badge",
275
- "content": "@entity.statusCode",
276
- "variant": "info"
361
+ "content": "@entity.statusCode"
277
362
  },
278
363
  {
279
364
  "type": "code",
280
- "content": "@entity.responseData",
281
- "language": "json"
365
+ "language": "json",
366
+ "content": "@entity.responseData"
282
367
  },
283
368
  {
369
+ "event": "RESET",
284
370
  "type": "button",
285
371
  "label": "New Request",
286
- "event": "RESET",
287
- "variant": "ghost",
288
- "icon": "rotate-ccw"
372
+ "icon": "rotate-ccw",
373
+ "variant": "ghost"
289
374
  }
290
- ]
375
+ ],
376
+ "direction": "vertical",
377
+ "align": "center",
378
+ "type": "stack"
291
379
  }
292
380
  ]
293
381
  ]
@@ -306,46 +394,42 @@
306
394
  "render-ui",
307
395
  "main",
308
396
  {
309
- "type": "error-state",
310
397
  "title": "Request Failed",
398
+ "onRetry": "RETRY",
311
399
  "message": "@entity.error",
312
- "onRetry": "RETRY"
400
+ "type": "error-state"
313
401
  }
314
402
  ]
315
403
  ]
316
404
  },
317
405
  {
318
- "from": "error",
406
+ "from": "complete",
319
407
  "to": "idle",
320
- "event": "RETRY",
408
+ "event": "RESET",
321
409
  "effects": [
322
410
  [
323
411
  "render-ui",
324
412
  "main",
325
413
  {
326
- "type": "stack",
327
- "direction": "vertical",
328
- "gap": "lg",
329
414
  "align": "center",
330
415
  "children": [
331
416
  {
417
+ "size": "lg",
332
418
  "type": "icon",
333
- "name": "globe",
334
- "size": "lg"
419
+ "name": "globe"
335
420
  },
336
421
  {
337
- "type": "typography",
338
422
  "content": "API Tester",
423
+ "type": "typography",
339
424
  "variant": "h2"
340
425
  },
341
426
  {
342
- "type": "input",
343
427
  "field": "endpoint",
344
- "placeholder": "/users",
345
- "bind": "@entity.endpoint"
428
+ "type": "input",
429
+ "bind": "@entity.endpoint",
430
+ "placeholder": "/users"
346
431
  },
347
432
  {
348
- "type": "select",
349
433
  "field": "method",
350
434
  "bind": "@entity.method",
351
435
  "options": [
@@ -354,104 +438,108 @@
354
438
  "value": "GET"
355
439
  },
356
440
  {
357
- "label": "POST",
358
- "value": "POST"
441
+ "value": "POST",
442
+ "label": "POST"
359
443
  },
360
444
  {
361
- "label": "PUT",
362
- "value": "PUT"
445
+ "value": "PUT",
446
+ "label": "PUT"
363
447
  },
364
448
  {
365
- "label": "DELETE",
366
- "value": "DELETE"
449
+ "value": "DELETE",
450
+ "label": "DELETE"
367
451
  }
368
- ]
452
+ ],
453
+ "type": "select"
369
454
  },
370
455
  {
371
- "type": "textarea",
456
+ "bind": "@entity.requestBody",
372
457
  "field": "requestBody",
373
- "placeholder": "JSON request body",
374
- "bind": "@entity.requestBody"
458
+ "type": "textarea",
459
+ "placeholder": "JSON request body"
375
460
  },
376
461
  {
377
- "type": "button",
378
462
  "label": "Send Request",
379
- "event": "CALL_API",
463
+ "type": "button",
380
464
  "variant": "primary",
381
- "icon": "send"
465
+ "icon": "send",
466
+ "event": "CALL_API"
382
467
  }
383
- ]
468
+ ],
469
+ "gap": "lg",
470
+ "type": "stack",
471
+ "direction": "vertical"
384
472
  }
385
473
  ]
386
474
  ]
387
475
  },
388
476
  {
389
- "from": "complete",
477
+ "from": "error",
390
478
  "to": "idle",
391
- "event": "RESET",
479
+ "event": "RETRY",
392
480
  "effects": [
393
481
  [
394
482
  "render-ui",
395
483
  "main",
396
484
  {
397
- "type": "stack",
398
- "direction": "vertical",
399
485
  "gap": "lg",
400
- "align": "center",
486
+ "type": "stack",
401
487
  "children": [
402
488
  {
489
+ "size": "lg",
403
490
  "type": "icon",
404
- "name": "globe",
405
- "size": "lg"
491
+ "name": "globe"
406
492
  },
407
493
  {
408
- "type": "typography",
409
494
  "content": "API Tester",
410
- "variant": "h2"
495
+ "variant": "h2",
496
+ "type": "typography"
411
497
  },
412
498
  {
413
- "type": "input",
499
+ "bind": "@entity.endpoint",
414
500
  "field": "endpoint",
415
501
  "placeholder": "/users",
416
- "bind": "@entity.endpoint"
502
+ "type": "input"
417
503
  },
418
504
  {
419
- "type": "select",
420
505
  "field": "method",
421
- "bind": "@entity.method",
422
506
  "options": [
423
507
  {
424
- "label": "GET",
425
- "value": "GET"
508
+ "value": "GET",
509
+ "label": "GET"
426
510
  },
427
511
  {
428
- "label": "POST",
429
- "value": "POST"
512
+ "value": "POST",
513
+ "label": "POST"
430
514
  },
431
515
  {
432
- "label": "PUT",
433
- "value": "PUT"
516
+ "value": "PUT",
517
+ "label": "PUT"
434
518
  },
435
519
  {
436
520
  "label": "DELETE",
437
521
  "value": "DELETE"
438
522
  }
439
- ]
523
+ ],
524
+ "bind": "@entity.method",
525
+ "type": "select"
440
526
  },
441
527
  {
442
- "type": "textarea",
443
528
  "field": "requestBody",
444
- "placeholder": "JSON request body",
445
- "bind": "@entity.requestBody"
529
+ "type": "textarea",
530
+ "bind": "@entity.requestBody",
531
+ "placeholder": "JSON request body"
446
532
  },
447
533
  {
534
+ "icon": "send",
448
535
  "type": "button",
449
- "label": "Send Request",
450
536
  "event": "CALL_API",
451
537
  "variant": "primary",
452
- "icon": "send"
538
+ "label": "Send Request"
453
539
  }
454
- ]
540
+ ],
541
+ "direction": "vertical",
542
+ "align": "center"
455
543
  }
456
544
  ]
457
545
  ]
@@ -465,10 +553,9 @@
465
553
  "render-ui",
466
554
  "main",
467
555
  {
468
- "type": "stack",
556
+ "align": "center",
469
557
  "direction": "vertical",
470
558
  "gap": "lg",
471
- "align": "center",
472
559
  "children": [
473
560
  {
474
561
  "type": "icon",
@@ -482,53 +569,55 @@
482
569
  },
483
570
  {
484
571
  "type": "input",
485
- "field": "endpoint",
486
572
  "placeholder": "/users",
573
+ "field": "endpoint",
487
574
  "bind": "@entity.endpoint"
488
575
  },
489
576
  {
490
577
  "type": "select",
491
- "field": "method",
492
578
  "bind": "@entity.method",
579
+ "field": "method",
493
580
  "options": [
494
581
  {
495
- "label": "GET",
496
- "value": "GET"
582
+ "value": "GET",
583
+ "label": "GET"
497
584
  },
498
585
  {
499
- "label": "POST",
500
- "value": "POST"
586
+ "value": "POST",
587
+ "label": "POST"
501
588
  },
502
589
  {
503
- "label": "PUT",
504
- "value": "PUT"
590
+ "value": "PUT",
591
+ "label": "PUT"
505
592
  },
506
593
  {
507
- "label": "DELETE",
508
- "value": "DELETE"
594
+ "value": "DELETE",
595
+ "label": "DELETE"
509
596
  }
510
597
  ]
511
598
  },
512
599
  {
513
- "type": "textarea",
514
600
  "field": "requestBody",
515
- "placeholder": "JSON request body",
516
- "bind": "@entity.requestBody"
601
+ "type": "textarea",
602
+ "bind": "@entity.requestBody",
603
+ "placeholder": "JSON request body"
517
604
  },
518
605
  {
519
606
  "type": "button",
520
607
  "label": "Send Request",
521
- "event": "CALL_API",
522
608
  "variant": "primary",
523
- "icon": "send"
609
+ "icon": "send",
610
+ "event": "CALL_API"
524
611
  }
525
- ]
612
+ ],
613
+ "type": "stack"
526
614
  }
527
615
  ]
528
616
  ]
529
617
  }
530
618
  ]
531
- }
619
+ },
620
+ "scope": "instance"
532
621
  }
533
622
  ],
534
623
  "pages": [
@@ -544,4 +633,4 @@
544
633
  ]
545
634
  }
546
635
  ]
547
- }
636
+ }