@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-github",
3
3
  "version": "1.0.0",
4
- "description": "GitHub service integration behavior: idle, creatingPR, prCreated, error. Wraps the `github` integration (listIssues, createPR) with a PR creation flow. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-service-github as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceGithubOrbital",
@@ -42,7 +42,7 @@
42
42
  {
43
43
  "name": "prNumber",
44
44
  "type": "number",
45
- "default": 0
45
+ "default": 0.0
46
46
  },
47
47
  {
48
48
  "name": "ghStatus",
@@ -81,8 +81,81 @@
81
81
  "traits": [
82
82
  {
83
83
  "name": "ServiceGithubGithub",
84
- "linkedEntity": "ServiceGithub",
85
84
  "category": "interaction",
85
+ "linkedEntity": "ServiceGithub",
86
+ "emits": [
87
+ {
88
+ "event": "ServiceGithubLoaded",
89
+ "description": "Fired when ServiceGithub finishes loading",
90
+ "scope": "internal",
91
+ "payload": [
92
+ {
93
+ "name": "id",
94
+ "type": "string",
95
+ "required": true
96
+ },
97
+ {
98
+ "name": "title",
99
+ "type": "string"
100
+ },
101
+ {
102
+ "name": "body",
103
+ "type": "string"
104
+ },
105
+ {
106
+ "name": "head",
107
+ "type": "string"
108
+ },
109
+ {
110
+ "name": "base",
111
+ "type": "string"
112
+ },
113
+ {
114
+ "name": "prUrl",
115
+ "type": "string"
116
+ },
117
+ {
118
+ "name": "prNumber",
119
+ "type": "number"
120
+ },
121
+ {
122
+ "name": "ghStatus",
123
+ "type": "string"
124
+ },
125
+ {
126
+ "name": "error",
127
+ "type": "string"
128
+ },
129
+ {
130
+ "name": "name",
131
+ "type": "string"
132
+ },
133
+ {
134
+ "name": "description",
135
+ "type": "string"
136
+ },
137
+ {
138
+ "name": "status",
139
+ "type": "string"
140
+ },
141
+ {
142
+ "name": "createdAt",
143
+ "type": "string"
144
+ }
145
+ ]
146
+ },
147
+ {
148
+ "event": "ServiceGithubLoadFailed",
149
+ "description": "Fired when ServiceGithub fails to load",
150
+ "scope": "internal",
151
+ "payload": [
152
+ {
153
+ "name": "message",
154
+ "type": "string"
155
+ }
156
+ ]
157
+ }
158
+ ],
86
159
  "stateMachine": {
87
160
  "states": [
88
161
  {
@@ -106,11 +179,11 @@
106
179
  },
107
180
  {
108
181
  "key": "CREATE_PR",
109
- "name": "Create Pull Request"
182
+ "name": "Create Pr"
110
183
  },
111
184
  {
112
185
  "key": "PR_CREATED",
113
- "name": "PR Created",
186
+ "name": "Pr Created",
114
187
  "payload": [
115
188
  {
116
189
  "name": "url",
@@ -135,13 +208,27 @@
135
208
  }
136
209
  ]
137
210
  },
211
+ {
212
+ "key": "RESET",
213
+ "name": "Reset"
214
+ },
138
215
  {
139
216
  "key": "RETRY",
140
217
  "name": "Retry"
141
218
  },
142
219
  {
143
- "key": "RESET",
144
- "name": "Reset"
220
+ "key": "ServiceGithubLoaded",
221
+ "name": "ServiceGithub loaded"
222
+ },
223
+ {
224
+ "key": "ServiceGithubLoadFailed",
225
+ "name": "ServiceGithub load failed",
226
+ "payload": [
227
+ {
228
+ "name": "message",
229
+ "type": "string"
230
+ }
231
+ ]
145
232
  }
146
233
  ],
147
234
  "transitions": [
@@ -152,77 +239,83 @@
152
239
  "effects": [
153
240
  [
154
241
  "fetch",
155
- "ServiceGithub"
242
+ "ServiceGithub",
243
+ {
244
+ "emit": {
245
+ "success": "ServiceGithubLoaded",
246
+ "failure": "ServiceGithubLoadFailed"
247
+ }
248
+ }
156
249
  ],
157
250
  [
158
251
  "render-ui",
159
252
  "main",
160
253
  {
161
254
  "type": "stack",
162
- "direction": "vertical",
163
- "gap": "lg",
164
255
  "align": "center",
256
+ "direction": "vertical",
165
257
  "children": [
166
258
  {
167
- "type": "stack",
168
- "direction": "horizontal",
169
- "gap": "md",
170
259
  "align": "center",
171
260
  "children": [
172
261
  {
173
262
  "type": "icon",
174
- "name": "git-pull-request",
175
- "size": "lg"
263
+ "size": "lg",
264
+ "name": "git-pull-request"
176
265
  },
177
266
  {
178
267
  "type": "typography",
179
268
  "content": "Create Pull Request",
180
269
  "variant": "h2"
181
270
  }
182
- ]
271
+ ],
272
+ "type": "stack",
273
+ "gap": "md",
274
+ "direction": "horizontal"
183
275
  },
184
276
  {
185
277
  "type": "divider"
186
278
  },
187
279
  {
188
- "type": "stack",
189
280
  "direction": "vertical",
190
281
  "gap": "md",
282
+ "type": "stack",
191
283
  "children": [
192
284
  {
193
- "type": "input",
194
- "label": "Title",
285
+ "placeholder": "PR title",
195
286
  "field": "title",
196
- "placeholder": "PR title"
287
+ "type": "input",
288
+ "label": "Title"
197
289
  },
198
290
  {
199
- "type": "textarea",
200
291
  "label": "Body",
201
292
  "field": "body",
202
- "placeholder": "Describe your changes..."
293
+ "placeholder": "Describe your changes...",
294
+ "type": "textarea"
203
295
  },
204
296
  {
205
- "type": "input",
206
- "label": "Head Branch",
207
297
  "field": "head",
208
- "placeholder": "feature-branch"
298
+ "placeholder": "feature-branch",
299
+ "label": "Head Branch",
300
+ "type": "input"
209
301
  },
210
302
  {
211
- "type": "input",
212
- "label": "Base Branch",
303
+ "placeholder": "main",
213
304
  "field": "base",
214
- "placeholder": "main"
305
+ "type": "input",
306
+ "label": "Base Branch"
215
307
  }
216
308
  ]
217
309
  },
218
310
  {
311
+ "event": "CREATE_PR",
219
312
  "type": "button",
220
313
  "label": "Create PR",
221
- "event": "CREATE_PR",
222
314
  "variant": "primary",
223
315
  "icon": "git-pull-request"
224
316
  }
225
- ]
317
+ ],
318
+ "gap": "lg"
226
319
  }
227
320
  ]
228
321
  ]
@@ -236,9 +329,9 @@
236
329
  "render-ui",
237
330
  "main",
238
331
  {
332
+ "message": "Submitting your PR to GitHub.",
239
333
  "type": "loading-state",
240
- "title": "Creating pull request...",
241
- "message": "Submitting your PR to GitHub."
334
+ "title": "Creating pull request..."
242
335
  }
243
336
  ],
244
337
  [
@@ -246,10 +339,10 @@
246
339
  "github",
247
340
  "createPR",
248
341
  {
249
- "title": "@entity.title",
250
342
  "body": "@entity.body",
251
343
  "head": "@entity.head",
252
- "base": "@entity.base"
344
+ "base": "@entity.base",
345
+ "title": "@entity.title"
253
346
  }
254
347
  ]
255
348
  ]
@@ -278,15 +371,15 @@
278
371
  "render-ui",
279
372
  "main",
280
373
  {
374
+ "align": "center",
375
+ "gap": "lg",
281
376
  "type": "stack",
282
377
  "direction": "vertical",
283
- "gap": "lg",
284
- "align": "center",
285
378
  "children": [
286
379
  {
380
+ "size": "lg",
287
381
  "type": "icon",
288
- "name": "check-circle",
289
- "size": "lg"
382
+ "name": "check-circle"
290
383
  },
291
384
  {
292
385
  "type": "alert",
@@ -294,16 +387,16 @@
294
387
  "message": "Pull request created!"
295
388
  },
296
389
  {
297
- "type": "typography",
298
390
  "variant": "body",
299
391
  "color": "muted",
392
+ "type": "typography",
300
393
  "content": "@entity.prUrl"
301
394
  },
302
395
  {
303
- "type": "button",
304
- "label": "Create Another",
305
396
  "event": "RESET",
397
+ "label": "Create Another",
306
398
  "variant": "ghost",
399
+ "type": "button",
307
400
  "icon": "rotate-ccw"
308
401
  }
309
402
  ]
@@ -325,18 +418,18 @@
325
418
  "render-ui",
326
419
  "main",
327
420
  {
328
- "type": "error-state",
329
421
  "title": "PR Creation Failed",
330
- "message": "@entity.error",
331
- "onRetry": "RETRY"
422
+ "onRetry": "RETRY",
423
+ "type": "error-state",
424
+ "message": "@entity.error"
332
425
  }
333
426
  ]
334
427
  ]
335
428
  },
336
429
  {
337
- "from": "error",
430
+ "from": "prCreated",
338
431
  "to": "idle",
339
- "event": "RETRY",
432
+ "event": "RESET",
340
433
  "effects": [
341
434
  [
342
435
  "render-ui",
@@ -344,58 +437,57 @@
344
437
  {
345
438
  "type": "stack",
346
439
  "direction": "vertical",
347
- "gap": "lg",
348
440
  "align": "center",
349
441
  "children": [
350
442
  {
351
443
  "type": "stack",
352
- "direction": "horizontal",
353
- "gap": "md",
354
- "align": "center",
355
444
  "children": [
356
445
  {
446
+ "size": "lg",
357
447
  "type": "icon",
358
- "name": "git-pull-request",
359
- "size": "lg"
448
+ "name": "git-pull-request"
360
449
  },
361
450
  {
451
+ "variant": "h2",
362
452
  "type": "typography",
363
- "content": "Create Pull Request",
364
- "variant": "h2"
453
+ "content": "Create Pull Request"
365
454
  }
366
- ]
455
+ ],
456
+ "gap": "md",
457
+ "direction": "horizontal",
458
+ "align": "center"
367
459
  },
368
460
  {
369
461
  "type": "divider"
370
462
  },
371
463
  {
372
- "type": "stack",
373
464
  "direction": "vertical",
374
465
  "gap": "md",
466
+ "type": "stack",
375
467
  "children": [
376
468
  {
377
- "type": "input",
378
- "label": "Title",
469
+ "placeholder": "PR title",
379
470
  "field": "title",
380
- "placeholder": "PR title"
471
+ "type": "input",
472
+ "label": "Title"
381
473
  },
382
474
  {
475
+ "placeholder": "Describe your changes...",
383
476
  "type": "textarea",
384
477
  "label": "Body",
385
- "field": "body",
386
- "placeholder": "Describe your changes..."
478
+ "field": "body"
387
479
  },
388
480
  {
389
- "type": "input",
390
- "label": "Head Branch",
391
481
  "field": "head",
392
- "placeholder": "feature-branch"
482
+ "placeholder": "feature-branch",
483
+ "type": "input",
484
+ "label": "Head Branch"
393
485
  },
394
486
  {
395
- "type": "input",
396
- "label": "Base Branch",
397
487
  "field": "base",
398
- "placeholder": "main"
488
+ "type": "input",
489
+ "placeholder": "main",
490
+ "label": "Base Branch"
399
491
  }
400
492
  ]
401
493
  },
@@ -406,85 +498,86 @@
406
498
  "variant": "primary",
407
499
  "icon": "git-pull-request"
408
500
  }
409
- ]
501
+ ],
502
+ "gap": "lg"
410
503
  }
411
504
  ]
412
505
  ]
413
506
  },
414
507
  {
415
- "from": "prCreated",
508
+ "from": "error",
416
509
  "to": "idle",
417
- "event": "RESET",
510
+ "event": "RETRY",
418
511
  "effects": [
419
512
  [
420
513
  "render-ui",
421
514
  "main",
422
515
  {
423
- "type": "stack",
424
- "direction": "vertical",
425
- "gap": "lg",
426
- "align": "center",
427
516
  "children": [
428
517
  {
429
- "type": "stack",
430
- "direction": "horizontal",
431
- "gap": "md",
432
- "align": "center",
433
518
  "children": [
434
519
  {
435
- "type": "icon",
520
+ "size": "lg",
436
521
  "name": "git-pull-request",
437
- "size": "lg"
522
+ "type": "icon"
438
523
  },
439
524
  {
440
- "type": "typography",
441
525
  "content": "Create Pull Request",
526
+ "type": "typography",
442
527
  "variant": "h2"
443
528
  }
444
- ]
529
+ ],
530
+ "direction": "horizontal",
531
+ "align": "center",
532
+ "type": "stack",
533
+ "gap": "md"
445
534
  },
446
535
  {
447
536
  "type": "divider"
448
537
  },
449
538
  {
450
- "type": "stack",
451
539
  "direction": "vertical",
452
- "gap": "md",
453
540
  "children": [
454
541
  {
542
+ "field": "title",
455
543
  "type": "input",
456
544
  "label": "Title",
457
- "field": "title",
458
545
  "placeholder": "PR title"
459
546
  },
460
547
  {
461
- "type": "textarea",
462
548
  "label": "Body",
549
+ "placeholder": "Describe your changes...",
463
550
  "field": "body",
464
- "placeholder": "Describe your changes..."
551
+ "type": "textarea"
465
552
  },
466
553
  {
467
- "type": "input",
554
+ "placeholder": "feature-branch",
468
555
  "label": "Head Branch",
469
- "field": "head",
470
- "placeholder": "feature-branch"
556
+ "type": "input",
557
+ "field": "head"
471
558
  },
472
559
  {
473
- "type": "input",
474
560
  "label": "Base Branch",
475
561
  "field": "base",
476
- "placeholder": "main"
562
+ "placeholder": "main",
563
+ "type": "input"
477
564
  }
478
- ]
565
+ ],
566
+ "gap": "md",
567
+ "type": "stack"
479
568
  },
480
569
  {
481
- "type": "button",
482
570
  "label": "Create PR",
483
- "event": "CREATE_PR",
571
+ "type": "button",
484
572
  "variant": "primary",
573
+ "event": "CREATE_PR",
485
574
  "icon": "git-pull-request"
486
575
  }
487
- ]
576
+ ],
577
+ "direction": "vertical",
578
+ "type": "stack",
579
+ "align": "center",
580
+ "gap": "lg"
488
581
  }
489
582
  ]
490
583
  ]
@@ -498,28 +591,26 @@
498
591
  "render-ui",
499
592
  "main",
500
593
  {
501
- "type": "stack",
502
- "direction": "vertical",
503
- "gap": "lg",
504
594
  "align": "center",
595
+ "type": "stack",
505
596
  "children": [
506
597
  {
507
- "type": "stack",
508
- "direction": "horizontal",
509
- "gap": "md",
510
598
  "align": "center",
511
599
  "children": [
512
600
  {
513
- "type": "icon",
514
601
  "name": "git-pull-request",
515
- "size": "lg"
602
+ "size": "lg",
603
+ "type": "icon"
516
604
  },
517
605
  {
518
606
  "type": "typography",
519
- "content": "Create Pull Request",
520
- "variant": "h2"
607
+ "variant": "h2",
608
+ "content": "Create Pull Request"
521
609
  }
522
- ]
610
+ ],
611
+ "direction": "horizontal",
612
+ "gap": "md",
613
+ "type": "stack"
523
614
  },
524
615
  {
525
616
  "type": "divider"
@@ -527,48 +618,51 @@
527
618
  {
528
619
  "type": "stack",
529
620
  "direction": "vertical",
530
- "gap": "md",
531
621
  "children": [
532
622
  {
533
623
  "type": "input",
534
- "label": "Title",
624
+ "placeholder": "PR title",
535
625
  "field": "title",
536
- "placeholder": "PR title"
626
+ "label": "Title"
537
627
  },
538
628
  {
539
- "type": "textarea",
540
629
  "label": "Body",
630
+ "placeholder": "Describe your changes...",
541
631
  "field": "body",
542
- "placeholder": "Describe your changes..."
632
+ "type": "textarea"
543
633
  },
544
634
  {
545
635
  "type": "input",
636
+ "placeholder": "feature-branch",
546
637
  "label": "Head Branch",
547
- "field": "head",
548
- "placeholder": "feature-branch"
638
+ "field": "head"
549
639
  },
550
640
  {
551
- "type": "input",
552
- "label": "Base Branch",
553
641
  "field": "base",
642
+ "label": "Base Branch",
643
+ "type": "input",
554
644
  "placeholder": "main"
555
645
  }
556
- ]
646
+ ],
647
+ "gap": "md"
557
648
  },
558
649
  {
559
650
  "type": "button",
560
- "label": "Create PR",
651
+ "icon": "git-pull-request",
561
652
  "event": "CREATE_PR",
562
653
  "variant": "primary",
563
- "icon": "git-pull-request"
654
+ "label": "Create PR"
564
655
  }
565
- ]
656
+ ],
657
+ "gap": "lg",
658
+ "direction": "vertical"
566
659
  }
567
660
  ]
568
661
  ]
569
662
  }
570
663
  ]
571
- }
664
+ },
665
+ "scope": "instance"
572
666
  }
573
667
  ],
574
668
  "pages": [
@@ -584,4 +678,4 @@
584
678
  ]
585
679
  }
586
680
  ]
587
- }
681
+ }