@almadar/std 16.205.0 → 16.206.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 (492) hide show
  1. package/behaviors/lolo/ml/organisms/std-escalating-decision.lolo +3 -3
  2. package/behaviors/lolo/ui/core/atoms/std-modal-editor.lolo +265 -13
  3. package/behaviors/lolo/ui/core/molecules/ui-code-block.lolo +5 -5
  4. package/behaviors/lolo/ui/core/molecules/ui-floating-toolbar.lolo +1 -1
  5. package/behaviors/lolo/ui/core/molecules/ui-menu.lolo +2 -1
  6. package/behaviors/lolo/ui/game/atoms/std-area-fill.lolo +8 -3
  7. package/behaviors/lolo/ui/game/atoms/std-choice-gate.lolo +7 -3
  8. package/behaviors/lolo/ui/game/atoms/std-coef-pad.lolo +8 -3
  9. package/behaviors/lolo/ui/game/atoms/std-gate-lock.lolo +8 -3
  10. package/behaviors/lolo/ui/game/atoms/std-loop-lock.lolo +7 -3
  11. package/behaviors/lolo/ui/game/atoms/std-pad-lock.lolo +10 -3
  12. package/behaviors/lolo/ui/game/atoms/std-patrol-hazard.lolo +9 -3
  13. package/behaviors/lolo/ui/game/atoms/std-pickup.lolo +29 -5
  14. package/behaviors/lolo/ui/game/atoms/std-platformer-body.lolo +36 -14
  15. package/behaviors/lolo/ui/game/atoms/std-velocity-gate.lolo +7 -3
  16. package/behaviors/lolo/ui/learning/atoms/std-learn-slope-probe.lolo +12 -6
  17. package/behaviors/registry/agent/atoms/std-agent-completion.orb +27 -0
  18. package/behaviors/registry/agent/atoms/std-agent-context.orb +47 -0
  19. package/behaviors/registry/agent/atoms/std-agent-fix-loop.orb +57 -1
  20. package/behaviors/registry/agent/atoms/std-agent-memory.orb +88 -1
  21. package/behaviors/registry/agent/atoms/std-agent-planner.orb +58 -1
  22. package/behaviors/registry/agent/atoms/std-agent-session.orb +95 -1
  23. package/behaviors/registry/agent/atoms/std-agent-tool-call.orb +66 -1
  24. package/behaviors/registry/agent/atoms/std-agent-tool-loop.orb +74 -1
  25. package/behaviors/registry/agent/atoms/std-agent-trace.orb +38 -0
  26. package/behaviors/registry/agent/organisms/std-agent-builder.orb +70 -1
  27. package/behaviors/registry/agent/organisms/std-agent-rabit.orb +239 -2
  28. package/behaviors/registry/infra/atoms/std-anim-tick.orb +24 -0
  29. package/behaviors/registry/infra/atoms/std-approval-gate.orb +73 -20
  30. package/behaviors/registry/infra/atoms/std-audit-capture.orb +38 -0
  31. package/behaviors/registry/infra/atoms/std-cache-aside.orb +45 -62
  32. package/behaviors/registry/infra/atoms/std-calendar-sync.orb +113 -1
  33. package/behaviors/registry/infra/atoms/std-cascade-on-delete.orb +32 -0
  34. package/behaviors/registry/infra/atoms/std-circuit-breaker.orb +38 -32
  35. package/behaviors/registry/infra/atoms/std-cooldown.orb +28 -0
  36. package/behaviors/registry/infra/atoms/std-cross-reference.orb +55 -1
  37. package/behaviors/registry/infra/atoms/std-data-erasure.orb +52 -16
  38. package/behaviors/registry/infra/atoms/std-game-clock.orb +20 -0
  39. package/behaviors/registry/infra/atoms/std-lifecycle.orb +34 -0
  40. package/behaviors/registry/infra/atoms/std-migration-job.orb +165 -1
  41. package/behaviors/registry/infra/atoms/std-mod-queue.orb +23 -16
  42. package/behaviors/registry/infra/atoms/std-notification-center.orb +119 -1
  43. package/behaviors/registry/infra/atoms/std-notify-on-event.orb +162 -1
  44. package/behaviors/registry/infra/atoms/std-rate-limiter.orb +32 -28
  45. package/behaviors/registry/infra/atoms/std-reminder-scheduler.orb +30 -0
  46. package/behaviors/registry/infra/atoms/std-row-access-control.orb +58 -1
  47. package/behaviors/registry/infra/atoms/std-status-lifecycle.orb +34 -1
  48. package/behaviors/registry/infra/organisms/std-status-lifecycle-control.orb +33 -2
  49. package/behaviors/registry/ml/atoms/std-data-collector.orb +18 -0
  50. package/behaviors/registry/ml/atoms/std-graph-builder.orb +41 -1
  51. package/behaviors/registry/ml/atoms/std-ml-classify.orb +67 -1
  52. package/behaviors/registry/ml/atoms/std-ml-exact-check.orb +18 -0
  53. package/behaviors/registry/ml/atoms/std-ml-infer.orb +125 -1
  54. package/behaviors/registry/ml/atoms/std-ml-label-capture.orb +34 -0
  55. package/behaviors/registry/ml/atoms/std-ml-lookup.orb +18 -0
  56. package/behaviors/registry/ml/atoms/std-ml-posterior.orb +42 -0
  57. package/behaviors/registry/ml/atoms/std-ml-similarity.orb +82 -1
  58. package/behaviors/registry/ml/atoms/std-tokenizer.orb +30 -0
  59. package/behaviors/registry/ml/atoms/std-weight-validator.orb +60 -1
  60. package/behaviors/registry/ml/organisms/std-escalating-decision.orb +122 -13
  61. package/behaviors/registry/ml/organisms/std-knowledge-tracing.orb +51 -4
  62. package/behaviors/registry/ui/avl/atoms/ui-behavior-view.orb +6 -0
  63. package/behaviors/registry/ui/avl/atoms/ui-module-card.orb +6 -0
  64. package/behaviors/registry/ui/core/atoms/std-app-layout.orb +10 -0
  65. package/behaviors/registry/ui/core/atoms/std-app-search.orb +110 -1
  66. package/behaviors/registry/ui/core/atoms/std-billable-hour.orb +119 -2
  67. package/behaviors/registry/ui/core/atoms/std-board.orb +180 -1
  68. package/behaviors/registry/ui/core/atoms/std-browse.orb +143 -6
  69. package/behaviors/registry/ui/core/atoms/std-calendar.orb +59 -1
  70. package/behaviors/registry/ui/core/atoms/std-confirmation.orb +18 -0
  71. package/behaviors/registry/ui/core/atoms/std-dashboard-grid-embedded.orb +13 -2
  72. package/behaviors/registry/ui/core/atoms/std-date-range.orb +14 -0
  73. package/behaviors/registry/ui/core/atoms/std-detail-layout.orb +13 -0
  74. package/behaviors/registry/ui/core/atoms/std-esign-flow.orb +39 -4
  75. package/behaviors/registry/ui/core/atoms/std-esign-request.orb +20 -6
  76. package/behaviors/registry/ui/core/atoms/std-event-log.orb +146 -1
  77. package/behaviors/registry/ui/core/atoms/std-export.orb +35 -4
  78. package/behaviors/registry/ui/core/atoms/std-file-store.orb +26 -0
  79. package/behaviors/registry/ui/core/atoms/std-filter.orb +57 -1
  80. package/behaviors/registry/ui/core/atoms/std-form-advanced.orb +66 -1
  81. package/behaviors/registry/ui/core/atoms/std-gallery.orb +44 -18
  82. package/behaviors/registry/ui/core/atoms/std-geosearch.orb +22 -0
  83. package/behaviors/registry/ui/core/atoms/std-graphs.orb +71 -1
  84. package/behaviors/registry/ui/core/atoms/std-image-upload-multi.orb +67 -1
  85. package/behaviors/registry/ui/core/atoms/std-import.orb +69 -4
  86. package/behaviors/registry/ui/core/atoms/std-list.orb +36 -6
  87. package/behaviors/registry/ui/core/atoms/std-modal-editor.orb +1865 -169
  88. package/behaviors/registry/ui/core/atoms/std-modal.orb +44 -1
  89. package/behaviors/registry/ui/core/atoms/std-multi-party-flow.orb +201 -1
  90. package/behaviors/registry/ui/core/atoms/std-notification-panel.orb +24 -1
  91. package/behaviors/registry/ui/core/atoms/std-pagination.orb +35 -1
  92. package/behaviors/registry/ui/core/atoms/std-rating-review.orb +159 -1
  93. package/behaviors/registry/ui/core/atoms/std-record-detail.orb +144 -1
  94. package/behaviors/registry/ui/core/atoms/std-recurrence.orb +103 -1
  95. package/behaviors/registry/ui/core/atoms/std-related.orb +14 -0
  96. package/behaviors/registry/ui/core/atoms/std-saved-search.orb +30 -0
  97. package/behaviors/registry/ui/core/atoms/std-scatter.orb +51 -1
  98. package/behaviors/registry/ui/core/atoms/std-search.orb +10 -0
  99. package/behaviors/registry/ui/core/atoms/std-selection.orb +28 -1
  100. package/behaviors/registry/ui/core/atoms/std-signature-capture.orb +18 -0
  101. package/behaviors/registry/ui/core/atoms/std-stats.orb +153 -1
  102. package/behaviors/registry/ui/core/atoms/std-step-flow.orb +154 -1
  103. package/behaviors/registry/ui/core/atoms/std-tabs.orb +41 -1
  104. package/behaviors/registry/ui/core/atoms/std-tag-strip.orb +34 -0
  105. package/behaviors/registry/ui/core/atoms/std-tag-taxonomy.orb +48 -1
  106. package/behaviors/registry/ui/core/atoms/std-thread.orb +30 -0
  107. package/behaviors/registry/ui/core/atoms/std-tree.orb +36 -1
  108. package/behaviors/registry/ui/core/atoms/std-version-history.orb +54 -0
  109. package/behaviors/registry/ui/core/atoms/std-vote.orb +22 -0
  110. package/behaviors/registry/ui/core/atoms/std-wizard.orb +130 -1
  111. package/behaviors/registry/ui/core/atoms/ui-aside.orb +6 -0
  112. package/behaviors/registry/ui/core/atoms/ui-atlas-image.orb +6 -0
  113. package/behaviors/registry/ui/core/atoms/ui-atlas-panel.orb +6 -0
  114. package/behaviors/registry/ui/core/atoms/ui-avatar.orb +6 -0
  115. package/behaviors/registry/ui/core/atoms/ui-badge.orb +6 -0
  116. package/behaviors/registry/ui/core/atoms/ui-box.orb +6 -0
  117. package/behaviors/registry/ui/core/atoms/ui-button.orb +6 -0
  118. package/behaviors/registry/ui/core/atoms/ui-card.orb +6 -0
  119. package/behaviors/registry/ui/core/atoms/ui-center.orb +6 -0
  120. package/behaviors/registry/ui/core/atoms/ui-checkbox.orb +6 -0
  121. package/behaviors/registry/ui/core/atoms/ui-conditional-wrapper.orb +6 -0
  122. package/behaviors/registry/ui/core/atoms/ui-confetti-effect.orb +6 -0
  123. package/behaviors/registry/ui/core/atoms/ui-day-cell.orb +6 -0
  124. package/behaviors/registry/ui/core/atoms/ui-dialog.orb +6 -0
  125. package/behaviors/registry/ui/core/atoms/ui-divider.orb +6 -0
  126. package/behaviors/registry/ui/core/atoms/ui-filter-pill.orb +10 -0
  127. package/behaviors/registry/ui/core/atoms/ui-flip-container.orb +6 -0
  128. package/behaviors/registry/ui/core/atoms/ui-game-icon.orb +6 -0
  129. package/behaviors/registry/ui/core/atoms/ui-hstack.orb +6 -0
  130. package/behaviors/registry/ui/core/atoms/ui-icon.orb +6 -0
  131. package/behaviors/registry/ui/core/atoms/ui-infinite-scroll-sentinel.orb +6 -0
  132. package/behaviors/registry/ui/core/atoms/ui-input.orb +10 -0
  133. package/behaviors/registry/ui/core/atoms/ui-label.orb +6 -0
  134. package/behaviors/registry/ui/core/atoms/ui-law-reference-tooltip.orb +6 -0
  135. package/behaviors/registry/ui/core/atoms/ui-overlay.orb +6 -0
  136. package/behaviors/registry/ui/core/atoms/ui-presence.orb +6 -0
  137. package/behaviors/registry/ui/core/atoms/ui-progress-bar.orb +6 -0
  138. package/behaviors/registry/ui/core/atoms/ui-radio.orb +10 -0
  139. package/behaviors/registry/ui/core/atoms/ui-range-slider.orb +10 -0
  140. package/behaviors/registry/ui/core/atoms/ui-section-header.orb +6 -0
  141. package/behaviors/registry/ui/core/atoms/ui-select.orb +6 -0
  142. package/behaviors/registry/ui/core/atoms/ui-spacer.orb +6 -0
  143. package/behaviors/registry/ui/core/atoms/ui-sparkline.orb +6 -0
  144. package/behaviors/registry/ui/core/atoms/ui-spinner.orb +6 -0
  145. package/behaviors/registry/ui/core/atoms/ui-stack.orb +6 -0
  146. package/behaviors/registry/ui/core/atoms/ui-status-dot.orb +6 -0
  147. package/behaviors/registry/ui/core/atoms/ui-svg-branch.orb +6 -0
  148. package/behaviors/registry/ui/core/atoms/ui-svg-connection.orb +6 -0
  149. package/behaviors/registry/ui/core/atoms/ui-svg-flow.orb +6 -0
  150. package/behaviors/registry/ui/core/atoms/ui-svg-grid.orb +6 -0
  151. package/behaviors/registry/ui/core/atoms/ui-svg-lobe.orb +6 -0
  152. package/behaviors/registry/ui/core/atoms/ui-svg-mesh.orb +6 -0
  153. package/behaviors/registry/ui/core/atoms/ui-svg-morph.orb +6 -0
  154. package/behaviors/registry/ui/core/atoms/ui-svg-node.orb +6 -0
  155. package/behaviors/registry/ui/core/atoms/ui-svg-pulse.orb +6 -0
  156. package/behaviors/registry/ui/core/atoms/ui-svg-ring.orb +6 -0
  157. package/behaviors/registry/ui/core/atoms/ui-svg-shield.orb +6 -0
  158. package/behaviors/registry/ui/core/atoms/ui-svg-stack.orb +6 -0
  159. package/behaviors/registry/ui/core/atoms/ui-switch.orb +10 -0
  160. package/behaviors/registry/ui/core/atoms/ui-text-highlight.orb +10 -0
  161. package/behaviors/registry/ui/core/atoms/ui-textarea.orb +6 -0
  162. package/behaviors/registry/ui/core/atoms/ui-theme-toggle.orb +6 -0
  163. package/behaviors/registry/ui/core/atoms/ui-time-slot-cell.orb +10 -0
  164. package/behaviors/registry/ui/core/atoms/ui-trait-frame.orb +6 -0
  165. package/behaviors/registry/ui/core/atoms/ui-trend-indicator.orb +6 -0
  166. package/behaviors/registry/ui/core/atoms/ui-typewriter-text.orb +6 -0
  167. package/behaviors/registry/ui/core/atoms/ui-typography.orb +6 -0
  168. package/behaviors/registry/ui/core/atoms/ui-vstack.orb +6 -0
  169. package/behaviors/registry/ui/core/molecules/std-stat-rows.orb +24 -1
  170. package/behaviors/registry/ui/core/molecules/ui-accordion.orb +6 -0
  171. package/behaviors/registry/ui/core/molecules/ui-activation-block.orb +6 -0
  172. package/behaviors/registry/ui/core/molecules/ui-alert.orb +6 -0
  173. package/behaviors/registry/ui/core/molecules/ui-bloom-quiz-block.orb +6 -0
  174. package/behaviors/registry/ui/core/molecules/ui-branching-logic-builder.orb +6 -0
  175. package/behaviors/registry/ui/core/molecules/ui-breadcrumb.orb +6 -0
  176. package/behaviors/registry/ui/core/molecules/ui-calendar-grid.orb +10 -0
  177. package/behaviors/registry/ui/core/molecules/ui-carousel.orb +6 -0
  178. package/behaviors/registry/ui/core/molecules/ui-chart-legend.orb +6 -0
  179. package/behaviors/registry/ui/core/molecules/ui-chart.orb +6 -0
  180. package/behaviors/registry/ui/core/molecules/ui-code-block.orb +38 -4
  181. package/behaviors/registry/ui/core/molecules/ui-command-palette.orb +10 -0
  182. package/behaviors/registry/ui/core/molecules/ui-confirm-dialog.orb +10 -0
  183. package/behaviors/registry/ui/core/molecules/ui-connection-block.orb +6 -0
  184. package/behaviors/registry/ui/core/molecules/ui-container.orb +6 -0
  185. package/behaviors/registry/ui/core/molecules/ui-content-renderer.orb +6 -0
  186. package/behaviors/registry/ui/core/molecules/ui-data-grid.orb +10 -0
  187. package/behaviors/registry/ui/core/molecules/ui-data-list.orb +10 -0
  188. package/behaviors/registry/ui/core/molecules/ui-date-range-picker.orb +14 -0
  189. package/behaviors/registry/ui/core/molecules/ui-date-range-selector.orb +6 -0
  190. package/behaviors/registry/ui/core/molecules/ui-doc-breadcrumb.orb +6 -0
  191. package/behaviors/registry/ui/core/molecules/ui-doc-pagination.orb +6 -0
  192. package/behaviors/registry/ui/core/molecules/ui-doc-search.orb +6 -0
  193. package/behaviors/registry/ui/core/molecules/ui-doc-sidebar.orb +6 -0
  194. package/behaviors/registry/ui/core/molecules/ui-doc-toc.orb +6 -0
  195. package/behaviors/registry/ui/core/molecules/ui-document-details.orb +10 -0
  196. package/behaviors/registry/ui/core/molecules/ui-document-panel.orb +14 -0
  197. package/behaviors/registry/ui/core/molecules/ui-document-viewer.orb +6 -0
  198. package/behaviors/registry/ui/core/molecules/ui-drawer.orb +10 -0
  199. package/behaviors/registry/ui/core/molecules/ui-edge-decoration.orb +6 -0
  200. package/behaviors/registry/ui/core/molecules/ui-emoji-picker.orb +6 -0
  201. package/behaviors/registry/ui/core/molecules/ui-empty-state.orb +6 -0
  202. package/behaviors/registry/ui/core/molecules/ui-error-boundary.orb +6 -0
  203. package/behaviors/registry/ui/core/molecules/ui-error-state.orb +6 -0
  204. package/behaviors/registry/ui/core/molecules/ui-feature-grid.orb +6 -0
  205. package/behaviors/registry/ui/core/molecules/ui-file-tree.orb +6 -0
  206. package/behaviors/registry/ui/core/molecules/ui-filter-group.orb +14 -0
  207. package/behaviors/registry/ui/core/molecules/ui-flex.orb +6 -0
  208. package/behaviors/registry/ui/core/molecules/ui-flip-card.orb +6 -0
  209. package/behaviors/registry/ui/core/molecules/ui-floating-action-button.orb +6 -0
  210. package/behaviors/registry/ui/core/molecules/ui-floating-toolbar.orb +10 -1
  211. package/behaviors/registry/ui/core/molecules/ui-form-actions.orb +10 -0
  212. package/behaviors/registry/ui/core/molecules/ui-form-field.orb +6 -0
  213. package/behaviors/registry/ui/core/molecules/ui-form-layout.orb +6 -0
  214. package/behaviors/registry/ui/core/molecules/ui-form-section-header.orb +6 -0
  215. package/behaviors/registry/ui/core/molecules/ui-fx-overlay.orb +6 -0
  216. package/behaviors/registry/ui/core/molecules/ui-gradient-divider.orb +6 -0
  217. package/behaviors/registry/ui/core/molecules/ui-graph-canvas.orb +6 -0
  218. package/behaviors/registry/ui/core/molecules/ui-graph-view.orb +6 -0
  219. package/behaviors/registry/ui/core/molecules/ui-grid.orb +6 -0
  220. package/behaviors/registry/ui/core/molecules/ui-header.orb +6 -0
  221. package/behaviors/registry/ui/core/molecules/ui-import-preview-tree.orb +6 -0
  222. package/behaviors/registry/ui/core/molecules/ui-import-progress.orb +6 -0
  223. package/behaviors/registry/ui/core/molecules/ui-import-source-picker.orb +6 -0
  224. package/behaviors/registry/ui/core/molecules/ui-input-group.orb +10 -0
  225. package/behaviors/registry/ui/core/molecules/ui-jazari-state-machine.orb +6 -0
  226. package/behaviors/registry/ui/core/molecules/ui-lightbox.orb +10 -0
  227. package/behaviors/registry/ui/core/molecules/ui-likert-scale.orb +6 -0
  228. package/behaviors/registry/ui/core/molecules/ui-line-chart.orb +6 -0
  229. package/behaviors/registry/ui/core/molecules/ui-loading-state.orb +6 -0
  230. package/behaviors/registry/ui/core/molecules/ui-map-view.orb +6 -0
  231. package/behaviors/registry/ui/core/molecules/ui-markdown-content.orb +6 -0
  232. package/behaviors/registry/ui/core/molecules/ui-matrix-question.orb +6 -0
  233. package/behaviors/registry/ui/core/molecules/ui-menu.orb +21 -0
  234. package/behaviors/registry/ui/core/molecules/ui-meter.orb +6 -0
  235. package/behaviors/registry/ui/core/molecules/ui-modal.orb +10 -0
  236. package/behaviors/registry/ui/core/molecules/ui-navigation.orb +6 -0
  237. package/behaviors/registry/ui/core/molecules/ui-notification.orb +6 -0
  238. package/behaviors/registry/ui/core/molecules/ui-number-stepper.orb +10 -0
  239. package/behaviors/registry/ui/core/molecules/ui-option-constraint-group.orb +6 -0
  240. package/behaviors/registry/ui/core/molecules/ui-orbital-visualization.orb +6 -0
  241. package/behaviors/registry/ui/core/molecules/ui-page-header.orb +6 -0
  242. package/behaviors/registry/ui/core/molecules/ui-page-transition.orb +6 -0
  243. package/behaviors/registry/ui/core/molecules/ui-pagination.orb +10 -0
  244. package/behaviors/registry/ui/core/molecules/ui-popover.orb +10 -0
  245. package/behaviors/registry/ui/core/molecules/ui-positioned-canvas.orb +10 -0
  246. package/behaviors/registry/ui/core/molecules/ui-progress-dots.orb +6 -0
  247. package/behaviors/registry/ui/core/molecules/ui-pull-to-refresh.orb +6 -0
  248. package/behaviors/registry/ui/core/molecules/ui-qr-scanner.orb +6 -0
  249. package/behaviors/registry/ui/core/molecules/ui-quiz-block.orb +6 -0
  250. package/behaviors/registry/ui/core/molecules/ui-reflection-block.orb +6 -0
  251. package/behaviors/registry/ui/core/molecules/ui-relation-select.orb +10 -0
  252. package/behaviors/registry/ui/core/molecules/ui-repeatable-form-section.orb +6 -0
  253. package/behaviors/registry/ui/core/molecules/ui-reply-tree.orb +10 -0
  254. package/behaviors/registry/ui/core/molecules/ui-rich-text-editor.orb +10 -0
  255. package/behaviors/registry/ui/core/molecules/ui-scaled-diagram.orb +6 -0
  256. package/behaviors/registry/ui/core/molecules/ui-search-input.orb +14 -0
  257. package/behaviors/registry/ui/core/molecules/ui-section.orb +6 -0
  258. package/behaviors/registry/ui/core/molecules/ui-side-panel.orb +10 -0
  259. package/behaviors/registry/ui/core/molecules/ui-sidebar.orb +10 -0
  260. package/behaviors/registry/ui/core/molecules/ui-signature-pad.orb +6 -0
  261. package/behaviors/registry/ui/core/molecules/ui-simple-grid.orb +6 -0
  262. package/behaviors/registry/ui/core/molecules/ui-skeleton.orb +6 -0
  263. package/behaviors/registry/ui/core/molecules/ui-social-proof.orb +6 -0
  264. package/behaviors/registry/ui/core/molecules/ui-sortable-list.orb +10 -0
  265. package/behaviors/registry/ui/core/molecules/ui-split.orb +6 -0
  266. package/behaviors/registry/ui/core/molecules/ui-star-rating.orb +10 -0
  267. package/behaviors/registry/ui/core/molecules/ui-stat-display.orb +6 -0
  268. package/behaviors/registry/ui/core/molecules/ui-swipeable-row.orb +6 -0
  269. package/behaviors/registry/ui/core/molecules/ui-table-view.orb +10 -0
  270. package/behaviors/registry/ui/core/molecules/ui-tabs.orb +6 -0
  271. package/behaviors/registry/ui/core/molecules/ui-tag-input.orb +6 -0
  272. package/behaviors/registry/ui/core/molecules/ui-tooltip.orb +6 -0
  273. package/behaviors/registry/ui/core/molecules/ui-upload-drop-zone.orb +6 -0
  274. package/behaviors/registry/ui/core/molecules/ui-version-diff.orb +6 -0
  275. package/behaviors/registry/ui/core/molecules/ui-violation-alert.orb +6 -0
  276. package/behaviors/registry/ui/core/molecules/ui-vote-stack.orb +6 -0
  277. package/behaviors/registry/ui/core/molecules/ui-wizard-container.orb +6 -0
  278. package/behaviors/registry/ui/core/molecules/ui-wizard-navigation.orb +14 -0
  279. package/behaviors/registry/ui/core/molecules/ui-wizard-progress.orb +6 -0
  280. package/behaviors/registry/ui/core/organisms/ui-chat-bar.orb +6 -0
  281. package/behaviors/registry/ui/core/organisms/ui-code-runner-panel.orb +6 -0
  282. package/behaviors/registry/ui/core/organisms/ui-dashboard-grid.orb +6 -0
  283. package/behaviors/registry/ui/core/organisms/ui-detail-panel.orb +10 -0
  284. package/behaviors/registry/ui/core/organisms/ui-dock-layout.orb +6 -0
  285. package/behaviors/registry/ui/core/organisms/ui-drawer-slot.orb +10 -0
  286. package/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +10 -0
  287. package/behaviors/registry/ui/core/organisms/ui-entity-list.orb +10 -0
  288. package/behaviors/registry/ui/core/organisms/ui-entity-table.orb +10 -0
  289. package/behaviors/registry/ui/core/organisms/ui-form-section.orb +10 -0
  290. package/behaviors/registry/ui/core/organisms/ui-form.orb +10 -0
  291. package/behaviors/registry/ui/core/organisms/ui-master-detail-layout.orb +6 -0
  292. package/behaviors/registry/ui/core/organisms/ui-master-detail.orb +10 -0
  293. package/behaviors/registry/ui/core/organisms/ui-media-gallery.orb +10 -0
  294. package/behaviors/registry/ui/core/organisms/ui-modal-slot.orb +10 -0
  295. package/behaviors/registry/ui/core/organisms/ui-runtime-debugger.orb +6 -0
  296. package/behaviors/registry/ui/core/organisms/ui-segment-renderer.orb +6 -0
  297. package/behaviors/registry/ui/core/organisms/ui-split-pane.orb +10 -0
  298. package/behaviors/registry/ui/core/organisms/ui-stat-card.orb +10 -0
  299. package/behaviors/registry/ui/core/organisms/ui-state-machine-view.orb +6 -0
  300. package/behaviors/registry/ui/core/organisms/ui-subagent-trace-panel.orb +10 -0
  301. package/behaviors/registry/ui/core/organisms/ui-tabbed-container.orb +6 -0
  302. package/behaviors/registry/ui/core/organisms/ui-timeline.orb +10 -0
  303. package/behaviors/registry/ui/core/organisms/ui-toast-slot.orb +10 -0
  304. package/behaviors/registry/ui/core/templates/ui-counter-template.orb +10 -0
  305. package/behaviors/registry/ui/core/templates/ui-dashboard-layout.orb +6 -0
  306. package/behaviors/registry/ui/core/templates/ui-generic-app-template.orb +10 -0
  307. package/behaviors/registry/ui/game/atoms/std-arcade-flow.orb +10 -0
  308. package/behaviors/registry/ui/game/atoms/std-arcade-play.orb +89 -1
  309. package/behaviors/registry/ui/game/atoms/std-area-fill.orb +219 -4
  310. package/behaviors/registry/ui/game/atoms/std-audio-cue.orb +30 -0
  311. package/behaviors/registry/ui/game/atoms/std-camera-rig.orb +63 -0
  312. package/behaviors/registry/ui/game/atoms/std-chase-ai.orb +133 -1
  313. package/behaviors/registry/ui/game/atoms/std-choice-gate.orb +122 -3
  314. package/behaviors/registry/ui/game/atoms/std-coef-pad.orb +159 -3
  315. package/behaviors/registry/ui/game/atoms/std-curve-fog.orb +26 -1
  316. package/behaviors/registry/ui/game/atoms/std-dungeon-combat.orb +150 -1
  317. package/behaviors/registry/ui/game/atoms/std-fx-narrative.orb +18 -0
  318. package/behaviors/registry/ui/game/atoms/std-fx-particles.orb +15 -0
  319. package/behaviors/registry/ui/game/atoms/std-fx-trail.orb +40 -1
  320. package/behaviors/registry/ui/game/atoms/std-gate-lock.orb +120 -3
  321. package/behaviors/registry/ui/game/atoms/std-gather.orb +180 -1
  322. package/behaviors/registry/ui/game/atoms/std-gold.orb +10 -0
  323. package/behaviors/registry/ui/game/atoms/std-grid-tactics.orb +130 -1
  324. package/behaviors/registry/ui/game/atoms/std-hero-nav.orb +92 -1
  325. package/behaviors/registry/ui/game/atoms/std-lives.orb +38 -0
  326. package/behaviors/registry/ui/game/atoms/std-loop-lock.orb +117 -3
  327. package/behaviors/registry/ui/game/atoms/std-market-flow.orb +10 -0
  328. package/behaviors/registry/ui/game/atoms/std-mesh-asset-art.orb +10 -0
  329. package/behaviors/registry/ui/game/atoms/std-motion-body.orb +68 -1
  330. package/behaviors/registry/ui/game/atoms/std-objective-flow.orb +10 -0
  331. package/behaviors/registry/ui/game/atoms/std-objective-reach.orb +184 -1
  332. package/behaviors/registry/ui/game/atoms/std-pad-lock.orb +118 -3
  333. package/behaviors/registry/ui/game/atoms/std-patience.orb +215 -1
  334. package/behaviors/registry/ui/game/atoms/std-patrol-hazard.orb +161 -3
  335. package/behaviors/registry/ui/game/atoms/std-pickup.orb +387 -24
  336. package/behaviors/registry/ui/game/atoms/std-platformer-body.orb +505 -17
  337. package/behaviors/registry/ui/game/atoms/std-production.orb +14 -0
  338. package/behaviors/registry/ui/game/atoms/std-round-flow.orb +10 -0
  339. package/behaviors/registry/ui/game/atoms/std-score.orb +10 -0
  340. package/behaviors/registry/ui/game/atoms/std-survival-flow.orb +10 -0
  341. package/behaviors/registry/ui/game/atoms/std-svg-asset-art.orb +10 -0
  342. package/behaviors/registry/ui/game/atoms/std-tutorial-autodemo.orb +117 -1
  343. package/behaviors/registry/ui/game/atoms/std-tutorial-overlay.orb +36 -0
  344. package/behaviors/registry/ui/game/atoms/std-velocity-gate.orb +140 -3
  345. package/behaviors/registry/ui/game/atoms/std-xp.orb +22 -0
  346. package/behaviors/registry/ui/game/atoms/std-zone-card.orb +70 -1
  347. package/behaviors/registry/ui/game/atoms/ui-action-palette.orb +6 -0
  348. package/behaviors/registry/ui/game/atoms/ui-action-tile.orb +6 -0
  349. package/behaviors/registry/ui/game/atoms/ui-canvas-2d.orb +6 -0
  350. package/behaviors/registry/ui/game/atoms/ui-canvas.orb +6 -0
  351. package/behaviors/registry/ui/game/atoms/ui-choice-button.orb +6 -0
  352. package/behaviors/registry/ui/game/atoms/ui-control-button.orb +6 -0
  353. package/behaviors/registry/ui/game/atoms/ui-control-grid.orb +6 -0
  354. package/behaviors/registry/ui/game/atoms/ui-dialogue-bubble.orb +6 -0
  355. package/behaviors/registry/ui/game/atoms/ui-draw-fx-layer.orb +6 -0
  356. package/behaviors/registry/ui/game/atoms/ui-draw-group.orb +6 -0
  357. package/behaviors/registry/ui/game/atoms/ui-draw-mesh.orb +6 -0
  358. package/behaviors/registry/ui/game/atoms/ui-draw-shape-layer.orb +6 -0
  359. package/behaviors/registry/ui/game/atoms/ui-draw-shape.orb +6 -0
  360. package/behaviors/registry/ui/game/atoms/ui-draw-sprite-layer.orb +6 -0
  361. package/behaviors/registry/ui/game/atoms/ui-draw-sprite.orb +6 -0
  362. package/behaviors/registry/ui/game/atoms/ui-draw-text-layer.orb +6 -0
  363. package/behaviors/registry/ui/game/atoms/ui-draw-text.orb +6 -0
  364. package/behaviors/registry/ui/game/atoms/ui-game-audio-cue.orb +6 -0
  365. package/behaviors/registry/ui/game/atoms/ui-game-audio-toggle.orb +6 -0
  366. package/behaviors/registry/ui/game/atoms/ui-game-hud.orb +6 -0
  367. package/behaviors/registry/ui/game/atoms/ui-game-menu.orb +6 -0
  368. package/behaviors/registry/ui/game/atoms/ui-health-bar.orb +6 -0
  369. package/behaviors/registry/ui/game/atoms/ui-score-display.orb +6 -0
  370. package/behaviors/registry/ui/game/atoms/ui-sequence-bar.orb +6 -0
  371. package/behaviors/registry/ui/game/atoms/ui-stat-badge.orb +6 -0
  372. package/behaviors/registry/ui/game/atoms/ui-state-graph.orb +6 -0
  373. package/behaviors/registry/ui/game/atoms/ui-state-json-view.orb +6 -0
  374. package/behaviors/registry/ui/game/atoms/ui-timer-display.orb +84 -1
  375. package/behaviors/registry/ui/game/atoms/ui-trait-slot.orb +10 -0
  376. package/behaviors/registry/ui/game/organisms/std-arcade-board-3d.orb +567 -8
  377. package/behaviors/registry/ui/game/organisms/std-crew-board-2d.orb +545 -6
  378. package/behaviors/registry/ui/game/organisms/std-dungeon-board-2d.orb +804 -10
  379. package/behaviors/registry/ui/game/organisms/std-market-board-3d.orb +597 -8
  380. package/behaviors/registry/ui/game/organisms/std-objective-board-3d.orb +565 -8
  381. package/behaviors/registry/ui/game/organisms/std-platformer-board-2d.orb +561 -6
  382. package/behaviors/registry/ui/game/organisms/std-platformer-puzzle.orb +12 -0
  383. package/behaviors/registry/ui/game/organisms/std-survival-board-3d.orb +551 -8
  384. package/behaviors/registry/ui/game/organisms/std-tactics-board-2d.orb +667 -12
  385. package/behaviors/registry/ui/game/organisms/std-tactics-board-3d.orb +707 -8
  386. package/behaviors/registry/ui/game/organisms/std-worldmap-board-2d.orb +506 -6
  387. package/behaviors/registry/ui/game/templates/ui-game-shell.orb +115 -1
  388. package/behaviors/registry/ui/learning/atoms/std-learn-arrangement.orb +201 -1
  389. package/behaviors/registry/ui/learning/atoms/std-learn-classify.orb +325 -1
  390. package/behaviors/registry/ui/learning/atoms/std-learn-compare.orb +108 -1
  391. package/behaviors/registry/ui/learning/atoms/std-learn-coupled-sim.orb +147 -1
  392. package/behaviors/registry/ui/learning/atoms/std-learn-derivation.orb +190 -1
  393. package/behaviors/registry/ui/learning/atoms/std-learn-diagram.orb +111 -1
  394. package/behaviors/registry/ui/learning/atoms/std-learn-doser.orb +164 -1
  395. package/behaviors/registry/ui/learning/atoms/std-learn-estimate.orb +105 -1
  396. package/behaviors/registry/ui/learning/atoms/std-learn-fx-cues.orb +169 -1
  397. package/behaviors/registry/ui/learning/atoms/std-learn-goal-seek.orb +128 -1
  398. package/behaviors/registry/ui/learning/atoms/std-learn-grid-sim.orb +123 -2
  399. package/behaviors/registry/ui/learning/atoms/std-learn-hotspot.orb +178 -1
  400. package/behaviors/registry/ui/learning/atoms/std-learn-live-sim.orb +105 -1
  401. package/behaviors/registry/ui/learning/atoms/std-learn-measure.orb +145 -1
  402. package/behaviors/registry/ui/learning/atoms/std-learn-param-explorer.orb +100 -1
  403. package/behaviors/registry/ui/learning/atoms/std-learn-perturb.orb +133 -1
  404. package/behaviors/registry/ui/learning/atoms/std-learn-predict.orb +247 -1
  405. package/behaviors/registry/ui/learning/atoms/std-learn-sample-accumulator.orb +180 -1
  406. package/behaviors/registry/ui/learning/atoms/std-learn-sandbox.orb +135 -1
  407. package/behaviors/registry/ui/learning/atoms/std-learn-scatter-fit.orb +206 -1
  408. package/behaviors/registry/ui/learning/atoms/std-learn-scenario.orb +129 -1
  409. package/behaviors/registry/ui/learning/atoms/std-learn-sim-3d.orb +53 -0
  410. package/behaviors/registry/ui/learning/atoms/std-learn-slope-probe.orb +168 -8
  411. package/behaviors/registry/ui/learning/atoms/std-learn-speed-drill.orb +135 -1
  412. package/behaviors/registry/ui/learning/atoms/std-learn-stepper.orb +254 -1
  413. package/behaviors/registry/ui/learning/atoms/std-learn-tour-3d.orb +315 -1
  414. package/behaviors/registry/ui/learning/atoms/std-learn-trace-player.orb +131 -1
  415. package/behaviors/registry/ui/learning/atoms/std-learn-transport.orb +57 -0
  416. package/behaviors/registry/ui/learning/atoms/std-learn-tree.orb +214 -1
  417. package/behaviors/registry/ui/learning/atoms/ui-algo-graph-canvas.orb +6 -0
  418. package/behaviors/registry/ui/learning/atoms/ui-algorithm-canvas.orb +6 -0
  419. package/behaviors/registry/ui/learning/atoms/ui-biology-canvas.orb +6 -0
  420. package/behaviors/registry/ui/learning/atoms/ui-chemistry-canvas.orb +6 -0
  421. package/behaviors/registry/ui/learning/atoms/ui-learning-canvas.orb +6 -0
  422. package/behaviors/registry/ui/learning/atoms/ui-math-canvas.orb +6 -0
  423. package/behaviors/registry/ui/learning/atoms/ui-physics-canvas.orb +6 -0
  424. package/behaviors/registry/ui/marketing/atoms/std-marketing-article.orb +1 -2
  425. package/behaviors/registry/ui/marketing/atoms/std-marketing-cta.orb +14 -0
  426. package/behaviors/registry/ui/marketing/atoms/std-marketing-features.orb +37 -1
  427. package/behaviors/registry/ui/marketing/atoms/std-marketing-footer.orb +52 -2
  428. package/behaviors/registry/ui/marketing/atoms/std-marketing-hero.orb +14 -0
  429. package/behaviors/registry/ui/marketing/atoms/std-marketing-nav.orb +25 -1
  430. package/behaviors/registry/ui/marketing/atoms/std-marketing-pricing.orb +59 -1
  431. package/behaviors/registry/ui/marketing/atoms/std-marketing-showcase.orb +62 -1
  432. package/behaviors/registry/ui/marketing/atoms/std-marketing-split.orb +1 -2
  433. package/behaviors/registry/ui/marketing/atoms/std-marketing-stats.orb +15 -2
  434. package/behaviors/registry/ui/marketing/atoms/std-marketing-steps.orb +28 -2
  435. package/behaviors/registry/ui/marketing/atoms/std-marketing-team.orb +33 -2
  436. package/behaviors/registry/ui/marketing/atoms/ui-animated-counter.orb +6 -0
  437. package/behaviors/registry/ui/marketing/atoms/ui-animated-graphic.orb +6 -0
  438. package/behaviors/registry/ui/marketing/atoms/ui-animated-reveal.orb +6 -0
  439. package/behaviors/registry/ui/marketing/atoms/ui-article-section.orb +6 -0
  440. package/behaviors/registry/ui/marketing/atoms/ui-case-study-card.orb +6 -0
  441. package/behaviors/registry/ui/marketing/atoms/ui-community-links.orb +6 -0
  442. package/behaviors/registry/ui/marketing/atoms/ui-content-section.orb +6 -0
  443. package/behaviors/registry/ui/marketing/atoms/ui-cta-banner.orb +6 -0
  444. package/behaviors/registry/ui/marketing/atoms/ui-feature-card.orb +6 -0
  445. package/behaviors/registry/ui/marketing/atoms/ui-geometric-pattern.orb +6 -0
  446. package/behaviors/registry/ui/marketing/atoms/ui-hero-section.orb +6 -0
  447. package/behaviors/registry/ui/marketing/atoms/ui-install-box.orb +6 -0
  448. package/behaviors/registry/ui/marketing/atoms/ui-marketing-footer.orb +6 -0
  449. package/behaviors/registry/ui/marketing/atoms/ui-marketing-stat-card.orb +6 -0
  450. package/behaviors/registry/ui/marketing/atoms/ui-pattern-tile.orb +6 -0
  451. package/behaviors/registry/ui/marketing/atoms/ui-pricing-card.orb +6 -0
  452. package/behaviors/registry/ui/marketing/atoms/ui-pricing-grid.orb +6 -0
  453. package/behaviors/registry/ui/marketing/atoms/ui-pull-quote.orb +6 -0
  454. package/behaviors/registry/ui/marketing/atoms/ui-service-catalog.orb +6 -0
  455. package/behaviors/registry/ui/marketing/atoms/ui-showcase-card.orb +6 -0
  456. package/behaviors/registry/ui/marketing/atoms/ui-split-section.orb +6 -0
  457. package/behaviors/registry/ui/marketing/atoms/ui-stats-grid.orb +6 -0
  458. package/behaviors/registry/ui/marketing/atoms/ui-step-flow.orb +6 -0
  459. package/behaviors/registry/ui/marketing/atoms/ui-tag-cloud.orb +6 -0
  460. package/behaviors/registry/ui/marketing/atoms/ui-team-card.orb +6 -0
  461. package/behaviors/registry/ui/marketing/organisms/ui-book-chapter-view.orb +10 -0
  462. package/behaviors/registry/ui/marketing/organisms/ui-book-cover-page.orb +6 -0
  463. package/behaviors/registry/ui/marketing/organisms/ui-book-nav-bar.orb +6 -0
  464. package/behaviors/registry/ui/marketing/organisms/ui-book-table-of-contents.orb +10 -0
  465. package/behaviors/registry/ui/marketing/organisms/ui-book-viewer.orb +10 -0
  466. package/behaviors/registry/ui/marketing/organisms/ui-case-study-organism.orb +10 -0
  467. package/behaviors/registry/ui/marketing/organisms/ui-feature-grid-organism.orb +10 -0
  468. package/behaviors/registry/ui/marketing/organisms/ui-hero-organism.orb +10 -0
  469. package/behaviors/registry/ui/marketing/organisms/ui-pricing-organism.orb +10 -0
  470. package/behaviors/registry/ui/marketing/organisms/ui-showcase-organism.orb +10 -0
  471. package/behaviors/registry/ui/marketing/organisms/ui-stats-organism.orb +10 -0
  472. package/behaviors/registry/ui/marketing/organisms/ui-step-flow-organism.orb +10 -0
  473. package/behaviors/registry/ui/marketing/organisms/ui-team-organism.orb +10 -0
  474. package/behaviors/registry/ui/marketing/templates/ui-about-page-template.orb +10 -0
  475. package/behaviors/registry/ui/marketing/templates/ui-auth-layout.orb +6 -0
  476. package/behaviors/registry/ui/marketing/templates/ui-feature-detail-page-template.orb +10 -0
  477. package/behaviors/registry/ui/marketing/templates/ui-landing-page-template.orb +10 -0
  478. package/behaviors/registry/ui/marketing/templates/ui-pricing-page-template.orb +10 -0
  479. package/dist/behaviors/exports-reader.js +3799 -3
  480. package/dist/behaviors/functions/index.d.ts +59 -31
  481. package/dist/behaviors/functions/index.js +3799 -3
  482. package/dist/behaviors/index.js +3799 -3
  483. package/dist/behaviors/query.d.ts +6 -0
  484. package/dist/behaviors/query.js +3799 -3
  485. package/dist/behaviors-embeddings.hash.json +3 -3
  486. package/dist/behaviors-embeddings.json +25 -25
  487. package/dist/behaviors-registry.json +9320 -88
  488. package/dist/index.js +3799 -3
  489. package/dist/knob-embeddings.hash.json +3 -3
  490. package/dist/knob-embeddings.json +1 -1
  491. package/dist/registry/factory-signatures.json +1 -1
  492. package/package.json +2 -2
@@ -228,6 +228,45 @@
228
228
  "traits": [
229
229
  {
230
230
  "category": "lifecycle",
231
+ "effectRow": [
232
+ {
233
+ "kind": "behavior/instantiate"
234
+ },
235
+ {
236
+ "kind": "emit",
237
+ "resource": "BUILD_COMPLETE"
238
+ },
239
+ {
240
+ "kind": "llm/generate"
241
+ },
242
+ {
243
+ "kind": "set",
244
+ "resource": "@entity.fixPrompt"
245
+ },
246
+ {
247
+ "kind": "set",
248
+ "resource": "@entity.orbitalName"
249
+ },
250
+ {
251
+ "kind": "set",
252
+ "resource": "@entity.plan"
253
+ },
254
+ {
255
+ "kind": "set",
256
+ "resource": "@entity.request"
257
+ },
258
+ {
259
+ "kind": "set",
260
+ "resource": "@entity.status"
261
+ },
262
+ {
263
+ "kind": "set",
264
+ "resource": "@entity.validationResult"
265
+ },
266
+ {
267
+ "kind": "validate/validate"
268
+ }
269
+ ],
231
270
  "emits": [
232
271
  {
233
272
  "event": "BUILD_COMPLETE",
@@ -539,6 +578,12 @@
539
578
  },
540
579
  {
541
580
  "category": "lifecycle",
581
+ "effectRow": [
582
+ {
583
+ "kind": "set",
584
+ "resource": "@entity.status"
585
+ }
586
+ ],
542
587
  "entityRefIds": {
543
588
  "BuilderProcess": "ent_01KXG04ERRVA2AHCJ4BR9BBY0H"
544
589
  },
@@ -643,7 +688,31 @@
643
688
  ]
644
689
  }
645
690
  }
646
- ]
691
+ ],
692
+ "types": {
693
+ "OrbitalSpec": [
694
+ {
695
+ "name": "orbitalName",
696
+ "required": true,
697
+ "type": "string"
698
+ },
699
+ {
700
+ "name": "organism",
701
+ "required": true,
702
+ "type": "string"
703
+ },
704
+ {
705
+ "name": "method",
706
+ "required": true,
707
+ "type": "string"
708
+ },
709
+ {
710
+ "name": "deltaPrompt",
711
+ "required": true,
712
+ "type": "string"
713
+ }
714
+ ]
715
+ }
647
716
  }
648
717
  ],
649
718
  "schemaVersion": 1,
@@ -452,6 +452,60 @@
452
452
  "traits": [
453
453
  {
454
454
  "category": "lifecycle",
455
+ "effectRow": [
456
+ {
457
+ "kind": "compose/compose-all"
458
+ },
459
+ {
460
+ "kind": "emit",
461
+ "resource": "DISPATCHED"
462
+ },
463
+ {
464
+ "kind": "emit",
465
+ "resource": "RABIT_DONE"
466
+ },
467
+ {
468
+ "kind": "llm/generate"
469
+ },
470
+ {
471
+ "kind": "session/write-spec"
472
+ },
473
+ {
474
+ "kind": "set",
475
+ "resource": "@entity.completedCount"
476
+ },
477
+ {
478
+ "kind": "set",
479
+ "resource": "@entity.composedSchema"
480
+ },
481
+ {
482
+ "kind": "set",
483
+ "resource": "@entity.failedCount"
484
+ },
485
+ {
486
+ "kind": "set",
487
+ "resource": "@entity.phase"
488
+ },
489
+ {
490
+ "kind": "set",
491
+ "resource": "@entity.plan"
492
+ },
493
+ {
494
+ "kind": "set",
495
+ "resource": "@entity.prompt"
496
+ },
497
+ {
498
+ "kind": "set",
499
+ "resource": "@entity.totalOrbitals"
500
+ },
501
+ {
502
+ "kind": "set",
503
+ "resource": "@entity.validationErrors"
504
+ },
505
+ {
506
+ "kind": "validate/validate"
507
+ }
508
+ ],
455
509
  "emits": [
456
510
  {
457
511
  "event": "PLANNED",
@@ -913,6 +967,24 @@
913
967
  },
914
968
  {
915
969
  "category": "lifecycle",
970
+ "effectRow": [
971
+ {
972
+ "kind": "emit",
973
+ "resource": "ALL_DONE"
974
+ },
975
+ {
976
+ "kind": "set",
977
+ "resource": "@entity.completedCount"
978
+ },
979
+ {
980
+ "kind": "set",
981
+ "resource": "@entity.failedCount"
982
+ },
983
+ {
984
+ "kind": "set",
985
+ "resource": "@entity.totalOrbitals"
986
+ }
987
+ ],
916
988
  "emits": [
917
989
  {
918
990
  "event": "ALL_DONE",
@@ -1137,6 +1209,12 @@
1137
1209
  },
1138
1210
  {
1139
1211
  "category": "lifecycle",
1212
+ "effectRow": [
1213
+ {
1214
+ "kind": "set",
1215
+ "resource": "@entity.phase"
1216
+ }
1217
+ ],
1140
1218
  "entityRefIds": {
1141
1219
  "Coordinator": "ent_01KXG04ET6Y5GGKTRFESK90Z4E"
1142
1220
  },
@@ -1223,7 +1301,52 @@
1223
1301
  ]
1224
1302
  }
1225
1303
  }
1226
- ]
1304
+ ],
1305
+ "types": {
1306
+ "OrbitalSpec": [
1307
+ {
1308
+ "name": "orbitalName",
1309
+ "required": true,
1310
+ "type": "string"
1311
+ },
1312
+ {
1313
+ "name": "organism",
1314
+ "required": true,
1315
+ "type": "string"
1316
+ },
1317
+ {
1318
+ "name": "method",
1319
+ "required": true,
1320
+ "type": "string"
1321
+ },
1322
+ {
1323
+ "name": "deltaPrompt",
1324
+ "required": true,
1325
+ "type": "string"
1326
+ }
1327
+ ],
1328
+ "ValidationError": [
1329
+ {
1330
+ "name": "orbitalName",
1331
+ "type": "string"
1332
+ },
1333
+ {
1334
+ "name": "message",
1335
+ "required": true,
1336
+ "type": "string"
1337
+ },
1338
+ {
1339
+ "name": "code",
1340
+ "required": true,
1341
+ "type": "string"
1342
+ },
1343
+ {
1344
+ "name": "severity",
1345
+ "required": true,
1346
+ "type": "string"
1347
+ }
1348
+ ]
1349
+ }
1227
1350
  },
1228
1351
  {
1229
1352
  "entity": {
@@ -1332,6 +1455,65 @@
1332
1455
  "traits": [
1333
1456
  {
1334
1457
  "category": "lifecycle",
1458
+ "effectRow": [
1459
+ {
1460
+ "kind": "behavior/instantiate"
1461
+ },
1462
+ {
1463
+ "kind": "emit",
1464
+ "resource": "BUILD_STEP"
1465
+ },
1466
+ {
1467
+ "kind": "emit",
1468
+ "resource": "ORBITAL_COMPLETE"
1469
+ },
1470
+ {
1471
+ "kind": "emit",
1472
+ "resource": "PROCESS_DONE"
1473
+ },
1474
+ {
1475
+ "kind": "emit",
1476
+ "resource": "PROCESS_RETRY"
1477
+ },
1478
+ {
1479
+ "kind": "emit",
1480
+ "resource": "REBUILD"
1481
+ },
1482
+ {
1483
+ "kind": "llm/generate"
1484
+ },
1485
+ {
1486
+ "kind": "set",
1487
+ "resource": "@entity.attempts"
1488
+ },
1489
+ {
1490
+ "kind": "set",
1491
+ "resource": "@entity.fixPrompt"
1492
+ },
1493
+ {
1494
+ "kind": "set",
1495
+ "resource": "@entity.maxAttempts"
1496
+ },
1497
+ {
1498
+ "kind": "set",
1499
+ "resource": "@entity.method"
1500
+ },
1501
+ {
1502
+ "kind": "set",
1503
+ "resource": "@entity.orbitalName"
1504
+ },
1505
+ {
1506
+ "kind": "set",
1507
+ "resource": "@entity.spec"
1508
+ },
1509
+ {
1510
+ "kind": "set",
1511
+ "resource": "@entity.status"
1512
+ },
1513
+ {
1514
+ "kind": "validate/validate"
1515
+ }
1516
+ ],
1335
1517
  "emits": [
1336
1518
  {
1337
1519
  "event": "BUILD_STEP",
@@ -1824,6 +2006,16 @@
1824
2006
  },
1825
2007
  {
1826
2008
  "category": "lifecycle",
2009
+ "effectRow": [
2010
+ {
2011
+ "kind": "set",
2012
+ "resource": "@entity.method"
2013
+ },
2014
+ {
2015
+ "kind": "set",
2016
+ "resource": "@entity.orbitalName"
2017
+ }
2018
+ ],
1827
2019
  "entityRefIds": {
1828
2020
  "OrbitalProcess": "ent_01KXG04ET6ZFFAH02D4FZV095G"
1829
2021
  },
@@ -1915,7 +2107,52 @@
1915
2107
  ]
1916
2108
  }
1917
2109
  }
1918
- ]
2110
+ ],
2111
+ "types": {
2112
+ "OrbitalSpec": [
2113
+ {
2114
+ "name": "orbitalName",
2115
+ "required": true,
2116
+ "type": "string"
2117
+ },
2118
+ {
2119
+ "name": "organism",
2120
+ "required": true,
2121
+ "type": "string"
2122
+ },
2123
+ {
2124
+ "name": "method",
2125
+ "required": true,
2126
+ "type": "string"
2127
+ },
2128
+ {
2129
+ "name": "deltaPrompt",
2130
+ "required": true,
2131
+ "type": "string"
2132
+ }
2133
+ ],
2134
+ "ValidationError": [
2135
+ {
2136
+ "name": "orbitalName",
2137
+ "type": "string"
2138
+ },
2139
+ {
2140
+ "name": "message",
2141
+ "required": true,
2142
+ "type": "string"
2143
+ },
2144
+ {
2145
+ "name": "code",
2146
+ "required": true,
2147
+ "type": "string"
2148
+ },
2149
+ {
2150
+ "name": "severity",
2151
+ "required": true,
2152
+ "type": "string"
2153
+ }
2154
+ ]
2155
+ }
1919
2156
  }
1920
2157
  ],
1921
2158
  "schemaVersion": 1,
@@ -102,6 +102,30 @@
102
102
  "type": "[string]"
103
103
  }
104
104
  },
105
+ "effectRow": [
106
+ {
107
+ "kind": "set",
108
+ "resource": "@entity.animCounter"
109
+ },
110
+ {
111
+ "kind": "set",
112
+ "resource": "@entity.animCounter",
113
+ "site": "tick"
114
+ },
115
+ {
116
+ "kind": "set",
117
+ "resource": "@entity.frameName"
118
+ },
119
+ {
120
+ "kind": "set",
121
+ "resource": "@entity.frameName",
122
+ "site": "tick"
123
+ },
124
+ {
125
+ "kind": "ticks",
126
+ "site": "tick"
127
+ }
128
+ ],
105
129
  "entityContract": {
106
130
  "provides": [
107
131
  "animCounter",
@@ -382,8 +382,7 @@
382
382
  "linkedEntity": "ApprovalRequest",
383
383
  "linkedEntityId": "ent_01KXG04EYQFWN6TM97JNWHHSF4",
384
384
  "name": "LoadingSpinner",
385
- "ref": "Spinner.traits.SpinnerRender",
386
- "refId": "trt_01KXG04KQTE55FSTDE4V4XKESN"
385
+ "ref": "Spinner.traits.SpinnerRender"
387
386
  },
388
387
  {
389
388
  "config": {
@@ -396,8 +395,7 @@
396
395
  "linkedEntity": "ApprovalRequest",
397
396
  "linkedEntityId": "ent_01KXG04EYQFWN6TM97JNWHHSF4",
398
397
  "name": "ErrorSpinner",
399
- "ref": "Spinner.traits.SpinnerRender",
400
- "refId": "trt_01KXG04KQTE55FSTDE4V4XKESN"
398
+ "ref": "Spinner.traits.SpinnerRender"
401
399
  },
402
400
  {
403
401
  "config": {
@@ -418,8 +416,7 @@
418
416
  "linkedEntity": "ApprovalRequest",
419
417
  "linkedEntityId": "ent_01KXG04EYQFWN6TM97JNWHHSF4",
420
418
  "name": "LoadingText",
421
- "ref": "Typography.traits.TypographyRender",
422
- "refId": "trt_01KXG04MN4YEZRM29MVNFTYM98"
419
+ "ref": "Typography.traits.TypographyRender"
423
420
  },
424
421
  {
425
422
  "config": {
@@ -432,8 +429,7 @@
432
429
  "linkedEntity": "ApprovalRequest",
433
430
  "linkedEntityId": "ent_01KXG04EYQFWN6TM97JNWHHSF4",
434
431
  "name": "ShieldCheckIcon",
435
- "ref": "Icon.traits.IconRender",
436
- "refId": "trt_01KXG04K2JE4GSQVWEWHAHDE2A"
432
+ "ref": "Icon.traits.IconRender"
437
433
  },
438
434
  {
439
435
  "config": {
@@ -450,8 +446,7 @@
450
446
  "linkedEntity": "ApprovalRequest",
451
447
  "linkedEntityId": "ent_01KXG04EYQFWN6TM97JNWHHSF4",
452
448
  "name": "ApprovalQueueTitle",
453
- "ref": "Typography.traits.TypographyRender",
454
- "refId": "trt_01KXG04MN4YEZRM29MVNFTYM98"
449
+ "ref": "Typography.traits.TypographyRender"
455
450
  },
456
451
  {
457
452
  "config": {
@@ -468,8 +463,7 @@
468
463
  "linkedEntity": "ApprovalRequest",
469
464
  "linkedEntityId": "ent_01KXG04EYQFWN6TM97JNWHHSF4",
470
465
  "name": "DenyReasonTitle",
471
- "ref": "Typography.traits.TypographyRender",
472
- "refId": "trt_01KXG04MN4YEZRM29MVNFTYM98"
466
+ "ref": "Typography.traits.TypographyRender"
473
467
  },
474
468
  {
475
469
  "config": {
@@ -490,8 +484,7 @@
490
484
  "linkedEntity": "ApprovalRequest",
491
485
  "linkedEntityId": "ent_01KXG04EYQFWN6TM97JNWHHSF4",
492
486
  "name": "DenyReasonHint",
493
- "ref": "Typography.traits.TypographyRender",
494
- "refId": "trt_01KXG04MN4YEZRM29MVNFTYM98"
487
+ "ref": "Typography.traits.TypographyRender"
495
488
  },
496
489
  {
497
490
  "config": {
@@ -516,16 +509,14 @@
516
509
  "linkedEntity": "ApprovalRequest",
517
510
  "linkedEntityId": "ent_01KXG04EYQFWN6TM97JNWHHSF4",
518
511
  "name": "CloseButton",
519
- "ref": "Button.traits.ButtonRender",
520
- "refId": "trt_01KXG04JBQPWD7RW8X33NXPXG9"
512
+ "ref": "Button.traits.ButtonRender"
521
513
  },
522
514
  {
523
515
  "id": "trt_01KY21K6QC0P4NS69R6ATZPC18",
524
516
  "linkedEntity": "ApprovalRequest",
525
517
  "linkedEntityId": "ent_01KXG04EYQFWN6TM97JNWHHSF4",
526
518
  "name": "ApprovalDivider",
527
- "ref": "Divider.traits.DividerRender",
528
- "refId": "trt_01KXG04JVTJZ479S2KPR7HD1KB"
519
+ "ref": "Divider.traits.DividerRender"
529
520
  },
530
521
  {
531
522
  "config": {
@@ -542,8 +533,7 @@
542
533
  "linkedEntity": "ApprovalRequest",
543
534
  "linkedEntityId": "ent_01KXG04EYQFWN6TM97JNWHHSF4",
544
535
  "name": "ErrorAlert",
545
- "ref": "Alert.traits.AlertRender",
546
- "refId": "trt_01KXG04MT125AX1BGFS3ZNGX67"
536
+ "ref": "Alert.traits.AlertRender"
547
537
  },
548
538
  {
549
539
  "capabilities": [
@@ -643,6 +633,56 @@
643
633
  "type": "string"
644
634
  }
645
635
  },
636
+ "effectRow": [
637
+ {
638
+ "kind": "emit",
639
+ "resource": "ApprovalDenied"
640
+ },
641
+ {
642
+ "kind": "emit",
643
+ "resource": "ApprovalGranted"
644
+ },
645
+ {
646
+ "kind": "fetch",
647
+ "resource": "ApprovalRequest"
648
+ },
649
+ {
650
+ "kind": "notify"
651
+ },
652
+ {
653
+ "kind": "persist",
654
+ "resource": "ApprovalRequest"
655
+ },
656
+ {
657
+ "kind": "render-ui",
658
+ "resolved": false,
659
+ "resource": "@config.reviewSlot"
660
+ },
661
+ {
662
+ "kind": "set",
663
+ "resource": "@entity.decidedAt"
664
+ },
665
+ {
666
+ "kind": "set",
667
+ "resource": "@entity.id"
668
+ },
669
+ {
670
+ "kind": "set",
671
+ "resource": "@entity.notes"
672
+ },
673
+ {
674
+ "kind": "set",
675
+ "resource": "@entity.reviewer"
676
+ },
677
+ {
678
+ "kind": "set",
679
+ "resource": "@entity.status"
680
+ },
681
+ {
682
+ "kind": "set",
683
+ "resource": "@entity.subjectLabel"
684
+ }
685
+ ],
646
686
  "emits": [
647
687
  {
648
688
  "description": "Signals that an approval request has been approved.",
@@ -2097,6 +2137,19 @@
2097
2137
  }
2098
2138
  }
2099
2139
  ],
2140
+ "types": {
2141
+ "DenyCommit": [
2142
+ {
2143
+ "name": "id",
2144
+ "required": true,
2145
+ "type": "string"
2146
+ },
2147
+ {
2148
+ "name": "notes",
2149
+ "type": "string"
2150
+ }
2151
+ ]
2152
+ },
2100
2153
  "uses": [
2101
2154
  {
2102
2155
  "as": "Spinner",
@@ -195,6 +195,44 @@
195
195
  "type": "number"
196
196
  }
197
197
  },
198
+ "effectRow": [
199
+ {
200
+ "kind": "emit",
201
+ "resource": "AuditRecorded"
202
+ },
203
+ {
204
+ "kind": "persist",
205
+ "resource": "AuditEntry"
206
+ },
207
+ {
208
+ "kind": "set",
209
+ "resource": "@entity.action"
210
+ },
211
+ {
212
+ "kind": "set",
213
+ "resource": "@entity.actor"
214
+ },
215
+ {
216
+ "kind": "set",
217
+ "resource": "@entity.after"
218
+ },
219
+ {
220
+ "kind": "set",
221
+ "resource": "@entity.before"
222
+ },
223
+ {
224
+ "kind": "set",
225
+ "resource": "@entity.entityId"
226
+ },
227
+ {
228
+ "kind": "set",
229
+ "resource": "@entity.entityType"
230
+ },
231
+ {
232
+ "kind": "set",
233
+ "resource": "@entity.recordedAt"
234
+ }
235
+ ],
198
236
  "emits": [
199
237
  {
200
238
  "event": "AuditRecorded",