@almadar/std 16.205.0 → 16.207.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
@@ -1996,6 +1996,27 @@ function stdAgentCompletionAgentCompletionOrbital(params = {}) {
1996
1996
  traits: [
1997
1997
  {
1998
1998
  "category": "lifecycle",
1999
+ "effectRow": [
2000
+ {
2001
+ "kind": "emit",
2002
+ "resource": "COMPLETED"
2003
+ },
2004
+ {
2005
+ "kind": "llm/generate"
2006
+ },
2007
+ {
2008
+ "kind": "set",
2009
+ "resource": "@entity.prompt"
2010
+ },
2011
+ {
2012
+ "kind": "set",
2013
+ "resource": "@entity.response"
2014
+ },
2015
+ {
2016
+ "kind": "set",
2017
+ "resource": "@entity.status"
2018
+ }
2019
+ ],
1999
2020
  "emits": [
2000
2021
  {
2001
2022
  "event": "COMPLETED",
@@ -2206,6 +2227,12 @@ function stdAgentCompletionAgentCompletionOrbital(params = {}) {
2206
2227
  },
2207
2228
  {
2208
2229
  "category": "lifecycle",
2230
+ "effectRow": [
2231
+ {
2232
+ "kind": "set",
2233
+ "resource": "@entity.status"
2234
+ }
2235
+ ],
2209
2236
  "linkedEntity": "Completion",
2210
2237
  "listens": [
2211
2238
  {
@@ -2483,6 +2510,23 @@ function stdAgentContextAgentContextOrbital(params = {}) {
2483
2510
  traits: [
2484
2511
  {
2485
2512
  "category": "lifecycle",
2513
+ "effectRow": [
2514
+ {
2515
+ "kind": "emit",
2516
+ "resource": "COUNTED"
2517
+ },
2518
+ {
2519
+ "kind": "llm/token-count"
2520
+ },
2521
+ {
2522
+ "kind": "set",
2523
+ "resource": "@entity.status"
2524
+ },
2525
+ {
2526
+ "kind": "set",
2527
+ "resource": "@entity.tokenCount"
2528
+ }
2529
+ ],
2486
2530
  "emits": [
2487
2531
  {
2488
2532
  "event": "COUNTED",
@@ -2675,6 +2719,30 @@ function stdAgentContextAgentContextOrbital(params = {}) {
2675
2719
  },
2676
2720
  {
2677
2721
  "category": "lifecycle",
2722
+ "effectRow": [
2723
+ {
2724
+ "kind": "emit",
2725
+ "resource": "COMPACTED"
2726
+ },
2727
+ {
2728
+ "kind": "llm/compact"
2729
+ },
2730
+ {
2731
+ "kind": "llm/token-count"
2732
+ },
2733
+ {
2734
+ "kind": "set",
2735
+ "resource": "@entity.afterTokens"
2736
+ },
2737
+ {
2738
+ "kind": "set",
2739
+ "resource": "@entity.beforeTokens"
2740
+ },
2741
+ {
2742
+ "kind": "set",
2743
+ "resource": "@entity.status"
2744
+ }
2745
+ ],
2678
2746
  "emits": [
2679
2747
  {
2680
2748
  "event": "COMPACTED",
@@ -3009,6 +3077,12 @@ function stdAgentContextAgentContextOrbital(params = {}) {
3009
3077
  },
3010
3078
  {
3011
3079
  "category": "lifecycle",
3080
+ "effectRow": [
3081
+ {
3082
+ "kind": "set",
3083
+ "resource": "@entity.status"
3084
+ }
3085
+ ],
3012
3086
  "linkedEntity": "ContextWindow",
3013
3087
  "listens": [
3014
3088
  {
@@ -3339,6 +3413,34 @@ function stdAgentFixLoopAgentFixLoopOrbital(params = {}) {
3339
3413
  traits: [
3340
3414
  {
3341
3415
  "category": "lifecycle",
3416
+ "effectRow": [
3417
+ {
3418
+ "kind": "emit",
3419
+ "resource": "FIX_APPLIED"
3420
+ },
3421
+ {
3422
+ "kind": "llm/generate"
3423
+ },
3424
+ {
3425
+ "kind": "set",
3426
+ "resource": "@entity.errors"
3427
+ },
3428
+ {
3429
+ "kind": "set",
3430
+ "resource": "@entity.fixPrompt"
3431
+ },
3432
+ {
3433
+ "kind": "set",
3434
+ "resource": "@entity.orbitalName"
3435
+ },
3436
+ {
3437
+ "kind": "set",
3438
+ "resource": "@entity.status"
3439
+ },
3440
+ {
3441
+ "kind": "validate/validate"
3442
+ }
3443
+ ],
3342
3444
  "emits": [
3343
3445
  {
3344
3446
  "event": "FIX_APPLIED",
@@ -3552,6 +3654,12 @@ function stdAgentFixLoopAgentFixLoopOrbital(params = {}) {
3552
3654
  },
3553
3655
  {
3554
3656
  "category": "lifecycle",
3657
+ "effectRow": [
3658
+ {
3659
+ "kind": "set",
3660
+ "resource": "@entity.status"
3661
+ }
3662
+ ],
3555
3663
  "linkedEntity": "FixLoop",
3556
3664
  "listens": [
3557
3665
  {
@@ -3864,6 +3972,39 @@ function stdAgentMemoryAgentMemoryOrbital(params = {}) {
3864
3972
  traits: [
3865
3973
  {
3866
3974
  "category": "lifecycle",
3975
+ "effectRow": [
3976
+ {
3977
+ "kind": "emit",
3978
+ "resource": "RECALLED"
3979
+ },
3980
+ {
3981
+ "kind": "memory/recall"
3982
+ },
3983
+ {
3984
+ "kind": "set",
3985
+ "resource": "@entity.category"
3986
+ },
3987
+ {
3988
+ "kind": "set",
3989
+ "resource": "@entity.content"
3990
+ },
3991
+ {
3992
+ "kind": "set",
3993
+ "resource": "@entity.memoryId"
3994
+ },
3995
+ {
3996
+ "kind": "set",
3997
+ "resource": "@entity.query"
3998
+ },
3999
+ {
4000
+ "kind": "set",
4001
+ "resource": "@entity.results"
4002
+ },
4003
+ {
4004
+ "kind": "set",
4005
+ "resource": "@entity.status"
4006
+ }
4007
+ ],
3867
4008
  "emits": [
3868
4009
  {
3869
4010
  "event": "RECALLED",
@@ -4096,6 +4237,31 @@ function stdAgentMemoryAgentMemoryOrbital(params = {}) {
4096
4237
  },
4097
4238
  {
4098
4239
  "category": "lifecycle",
4240
+ "effectRow": [
4241
+ {
4242
+ "kind": "emit",
4243
+ "resource": "STORED"
4244
+ },
4245
+ {
4246
+ "kind": "memory/store"
4247
+ },
4248
+ {
4249
+ "kind": "set",
4250
+ "resource": "@entity.category"
4251
+ },
4252
+ {
4253
+ "kind": "set",
4254
+ "resource": "@entity.content"
4255
+ },
4256
+ {
4257
+ "kind": "set",
4258
+ "resource": "@entity.memoryId"
4259
+ },
4260
+ {
4261
+ "kind": "set",
4262
+ "resource": "@entity.status"
4263
+ }
4264
+ ],
4099
4265
  "emits": [
4100
4266
  {
4101
4267
  "event": "STORED",
@@ -4334,6 +4500,12 @@ function stdAgentMemoryAgentMemoryOrbital(params = {}) {
4334
4500
  },
4335
4501
  {
4336
4502
  "category": "lifecycle",
4503
+ "effectRow": [
4504
+ {
4505
+ "kind": "set",
4506
+ "resource": "@entity.status"
4507
+ }
4508
+ ],
4337
4509
  "linkedEntity": "AgentMemory",
4338
4510
  "listens": [
4339
4511
  {
@@ -4650,6 +4822,34 @@ function stdAgentPlannerAgentPlannerOrbital(params = {}) {
4650
4822
  traits: [
4651
4823
  {
4652
4824
  "category": "lifecycle",
4825
+ "effectRow": [
4826
+ {
4827
+ "kind": "emit",
4828
+ "resource": "PLANNED"
4829
+ },
4830
+ {
4831
+ "kind": "llm/generate"
4832
+ },
4833
+ {
4834
+ "kind": "memory/recall"
4835
+ },
4836
+ {
4837
+ "kind": "set",
4838
+ "resource": "@entity.memories"
4839
+ },
4840
+ {
4841
+ "kind": "set",
4842
+ "resource": "@entity.plan"
4843
+ },
4844
+ {
4845
+ "kind": "set",
4846
+ "resource": "@entity.prompt"
4847
+ },
4848
+ {
4849
+ "kind": "set",
4850
+ "resource": "@entity.status"
4851
+ }
4852
+ ],
4653
4853
  "emits": [
4654
4854
  {
4655
4855
  "event": "PLANNED",
@@ -4961,6 +5161,12 @@ function stdAgentPlannerAgentPlannerOrbital(params = {}) {
4961
5161
  },
4962
5162
  {
4963
5163
  "category": "lifecycle",
5164
+ "effectRow": [
5165
+ {
5166
+ "kind": "set",
5167
+ "resource": "@entity.status"
5168
+ }
5169
+ ],
4964
5170
  "linkedEntity": "PlannerPlan",
4965
5171
  "listens": [
4966
5172
  {
@@ -5280,6 +5486,34 @@ function stdAgentSessionAgentSessionOrbital(params = {}) {
5280
5486
  traits: [
5281
5487
  {
5282
5488
  "category": "lifecycle",
5489
+ "effectRow": [
5490
+ {
5491
+ "kind": "emit",
5492
+ "resource": "SPEC_READ"
5493
+ },
5494
+ {
5495
+ "kind": "session/read-history"
5496
+ },
5497
+ {
5498
+ "kind": "session/read-spec"
5499
+ },
5500
+ {
5501
+ "kind": "set",
5502
+ "resource": "@entity.history"
5503
+ },
5504
+ {
5505
+ "kind": "set",
5506
+ "resource": "@entity.orbitalName"
5507
+ },
5508
+ {
5509
+ "kind": "set",
5510
+ "resource": "@entity.spec"
5511
+ },
5512
+ {
5513
+ "kind": "set",
5514
+ "resource": "@entity.status"
5515
+ }
5516
+ ],
5283
5517
  "emits": [
5284
5518
  {
5285
5519
  "event": "SPEC_READ",
@@ -5647,6 +5881,27 @@ function stdAgentSessionAgentSessionOrbital(params = {}) {
5647
5881
  },
5648
5882
  {
5649
5883
  "category": "lifecycle",
5884
+ "effectRow": [
5885
+ {
5886
+ "kind": "emit",
5887
+ "resource": "SPEC_WRITTEN"
5888
+ },
5889
+ {
5890
+ "kind": "session/write-spec"
5891
+ },
5892
+ {
5893
+ "kind": "set",
5894
+ "resource": "@entity.orbitalName"
5895
+ },
5896
+ {
5897
+ "kind": "set",
5898
+ "resource": "@entity.spec"
5899
+ },
5900
+ {
5901
+ "kind": "set",
5902
+ "resource": "@entity.status"
5903
+ }
5904
+ ],
5650
5905
  "emits": [
5651
5906
  {
5652
5907
  "event": "SPEC_WRITTEN",
@@ -5821,6 +6076,12 @@ function stdAgentSessionAgentSessionOrbital(params = {}) {
5821
6076
  },
5822
6077
  {
5823
6078
  "category": "lifecycle",
6079
+ "effectRow": [
6080
+ {
6081
+ "kind": "set",
6082
+ "resource": "@entity.status"
6083
+ }
6084
+ ],
5824
6085
  "linkedEntity": "AgentSession",
5825
6086
  "listens": [
5826
6087
  {
@@ -6171,6 +6432,27 @@ function stdAgentToolCallAgentToolCallOrbital(params = {}) {
6171
6432
  traits: [
6172
6433
  {
6173
6434
  "category": "lifecycle",
6435
+ "effectRow": [
6436
+ {
6437
+ "kind": "llm/call-tools"
6438
+ },
6439
+ {
6440
+ "kind": "set",
6441
+ "resource": "@entity.messages"
6442
+ },
6443
+ {
6444
+ "kind": "set",
6445
+ "resource": "@entity.response"
6446
+ },
6447
+ {
6448
+ "kind": "set",
6449
+ "resource": "@entity.status"
6450
+ },
6451
+ {
6452
+ "kind": "set",
6453
+ "resource": "@entity.tools"
6454
+ }
6455
+ ],
6174
6456
  "emits": [
6175
6457
  {
6176
6458
  "event": "TOOLS_CALLED",
@@ -6410,6 +6692,12 @@ function stdAgentToolCallAgentToolCallOrbital(params = {}) {
6410
6692
  },
6411
6693
  {
6412
6694
  "category": "lifecycle",
6695
+ "effectRow": [
6696
+ {
6697
+ "kind": "set",
6698
+ "resource": "@entity.status"
6699
+ }
6700
+ ],
6413
6701
  "linkedEntity": "ToolCall",
6414
6702
  "listens": [
6415
6703
  {
@@ -6726,6 +7014,35 @@ function stdAgentToolLoopAgentToolLoopOrbital(params = {}) {
6726
7014
  traits: [
6727
7015
  {
6728
7016
  "category": "lifecycle",
7017
+ "effectRow": [
7018
+ {
7019
+ "kind": "emit",
7020
+ "resource": "LOOP_STEP"
7021
+ },
7022
+ {
7023
+ "kind": "llm/call-tools"
7024
+ },
7025
+ {
7026
+ "kind": "set",
7027
+ "resource": "@entity.iterations"
7028
+ },
7029
+ {
7030
+ "kind": "set",
7031
+ "resource": "@entity.messages"
7032
+ },
7033
+ {
7034
+ "kind": "set",
7035
+ "resource": "@entity.response"
7036
+ },
7037
+ {
7038
+ "kind": "set",
7039
+ "resource": "@entity.status"
7040
+ },
7041
+ {
7042
+ "kind": "set",
7043
+ "resource": "@entity.tools"
7044
+ }
7045
+ ],
6729
7046
  "emits": [
6730
7047
  {
6731
7048
  "event": "LOOP_STEP",
@@ -7121,6 +7438,12 @@ function stdAgentToolLoopAgentToolLoopOrbital(params = {}) {
7121
7438
  },
7122
7439
  {
7123
7440
  "category": "lifecycle",
7441
+ "effectRow": [
7442
+ {
7443
+ "kind": "set",
7444
+ "resource": "@entity.status"
7445
+ }
7446
+ ],
7124
7447
  "linkedEntity": "ToolLoop",
7125
7448
  "listens": [
7126
7449
  {
@@ -7374,6 +7697,30 @@ function stdAgentTraceAgentTraceOrbital(params = {}) {
7374
7697
  traits: [
7375
7698
  {
7376
7699
  "category": "lifecycle",
7700
+ "effectRow": [
7701
+ {
7702
+ "kind": "emit",
7703
+ "resource": "TRACED"
7704
+ },
7705
+ {
7706
+ "kind": "set",
7707
+ "resource": "@entity.event"
7708
+ },
7709
+ {
7710
+ "kind": "set",
7711
+ "resource": "@entity.level"
7712
+ },
7713
+ {
7714
+ "kind": "set",
7715
+ "resource": "@entity.message"
7716
+ },
7717
+ {
7718
+ "kind": "trace/emit"
7719
+ },
7720
+ {
7721
+ "kind": "trace/log"
7722
+ }
7723
+ ],
7377
7724
  "emits": [
7378
7725
  {
7379
7726
  "event": "TRACED"
@@ -7500,6 +7847,20 @@ function stdAgentTraceAgentTraceOrbital(params = {}) {
7500
7847
  },
7501
7848
  {
7502
7849
  "category": "lifecycle",
7850
+ "effectRow": [
7851
+ {
7852
+ "kind": "set",
7853
+ "resource": "@entity.event"
7854
+ },
7855
+ {
7856
+ "kind": "set",
7857
+ "resource": "@entity.level"
7858
+ },
7859
+ {
7860
+ "kind": "set",
7861
+ "resource": "@entity.message"
7862
+ }
7863
+ ],
7503
7864
  "linkedEntity": "AgentTrace",
7504
7865
  "listens": [
7505
7866
  {
@@ -7736,6 +8097,30 @@ function stdAnimTickAnimTickOrbital(params = {}) {
7736
8097
  "type": "[string]"
7737
8098
  }
7738
8099
  },
8100
+ "effectRow": [
8101
+ {
8102
+ "kind": "set",
8103
+ "resource": "@entity.animCounter"
8104
+ },
8105
+ {
8106
+ "kind": "set",
8107
+ "resource": "@entity.animCounter",
8108
+ "site": "tick"
8109
+ },
8110
+ {
8111
+ "kind": "set",
8112
+ "resource": "@entity.frameName"
8113
+ },
8114
+ {
8115
+ "kind": "set",
8116
+ "resource": "@entity.frameName",
8117
+ "site": "tick"
8118
+ },
8119
+ {
8120
+ "kind": "ticks",
8121
+ "site": "tick"
8122
+ }
8123
+ ],
7739
8124
  "entityContract": {
7740
8125
  "provides": [
7741
8126
  "animCounter",
@@ -8197,6 +8582,16 @@ function stdAppLayoutAppLayoutOrbital(params = {}) {
8197
8582
  "type": "string"
8198
8583
  }
8199
8584
  },
8585
+ "effectRow": [
8586
+ {
8587
+ "kind": "fetch",
8588
+ "resource": "AppLayoutData"
8589
+ },
8590
+ {
8591
+ "kind": "render-ui",
8592
+ "resource": "main"
8593
+ }
8594
+ ],
8200
8595
  "emits": [
8201
8596
  {
8202
8597
  "description": "Indicates a search query has been submitted.",
@@ -8582,6 +8977,12 @@ function stdAppSearchAppSearchOrbital(params = {}) {
8582
8977
  traits: [
8583
8978
  {
8584
8979
  "category": "interaction",
8980
+ "effectRow": [
8981
+ {
8982
+ "kind": "render-ui",
8983
+ "resource": "main"
8984
+ }
8985
+ ],
8585
8986
  "linkedEntity": "AppSearchTarget",
8586
8987
  "name": "AppSearchIdleHint",
8587
8988
  "scope": "instance",
@@ -8811,6 +9212,20 @@ function stdAppSearchAppSearchOrbital(params = {}) {
8811
9212
  "type": "string"
8812
9213
  }
8813
9214
  },
9215
+ "effectRow": [
9216
+ {
9217
+ "kind": "fetch",
9218
+ "resource": "AppSearchTarget"
9219
+ },
9220
+ {
9221
+ "kind": "render-ui",
9222
+ "resource": "main"
9223
+ },
9224
+ {
9225
+ "kind": "set",
9226
+ "resource": "@entity.searchTerm"
9227
+ }
9228
+ ],
8814
9229
  "emits": [
8815
9230
  {
8816
9231
  "description": "Filtered search results loaded",
@@ -9921,6 +10336,56 @@ function stdApprovalGateApprovalGateOrbital(params = {}) {
9921
10336
  "type": "string"
9922
10337
  }
9923
10338
  },
10339
+ "effectRow": [
10340
+ {
10341
+ "kind": "emit",
10342
+ "resource": "ApprovalDenied"
10343
+ },
10344
+ {
10345
+ "kind": "emit",
10346
+ "resource": "ApprovalGranted"
10347
+ },
10348
+ {
10349
+ "kind": "fetch",
10350
+ "resource": "ApprovalRequest"
10351
+ },
10352
+ {
10353
+ "kind": "notify"
10354
+ },
10355
+ {
10356
+ "kind": "persist",
10357
+ "resource": "ApprovalRequest"
10358
+ },
10359
+ {
10360
+ "kind": "render-ui",
10361
+ "resolved": false,
10362
+ "resource": "@config.reviewSlot"
10363
+ },
10364
+ {
10365
+ "kind": "set",
10366
+ "resource": "@entity.decidedAt"
10367
+ },
10368
+ {
10369
+ "kind": "set",
10370
+ "resource": "@entity.id"
10371
+ },
10372
+ {
10373
+ "kind": "set",
10374
+ "resource": "@entity.notes"
10375
+ },
10376
+ {
10377
+ "kind": "set",
10378
+ "resource": "@entity.reviewer"
10379
+ },
10380
+ {
10381
+ "kind": "set",
10382
+ "resource": "@entity.status"
10383
+ },
10384
+ {
10385
+ "kind": "set",
10386
+ "resource": "@entity.subjectLabel"
10387
+ }
10388
+ ],
9924
10389
  "emits": [
9925
10390
  {
9926
10391
  "description": "Signals that an approval request has been approved.",
@@ -11731,6 +12196,44 @@ function stdAuditCaptureAuditCaptureOrbital(params = {}) {
11731
12196
  "type": "number"
11732
12197
  }
11733
12198
  },
12199
+ "effectRow": [
12200
+ {
12201
+ "kind": "emit",
12202
+ "resource": "AuditRecorded"
12203
+ },
12204
+ {
12205
+ "kind": "persist",
12206
+ "resource": "AuditEntry"
12207
+ },
12208
+ {
12209
+ "kind": "set",
12210
+ "resource": "@entity.action"
12211
+ },
12212
+ {
12213
+ "kind": "set",
12214
+ "resource": "@entity.actor"
12215
+ },
12216
+ {
12217
+ "kind": "set",
12218
+ "resource": "@entity.after"
12219
+ },
12220
+ {
12221
+ "kind": "set",
12222
+ "resource": "@entity.before"
12223
+ },
12224
+ {
12225
+ "kind": "set",
12226
+ "resource": "@entity.entityId"
12227
+ },
12228
+ {
12229
+ "kind": "set",
12230
+ "resource": "@entity.entityType"
12231
+ },
12232
+ {
12233
+ "kind": "set",
12234
+ "resource": "@entity.recordedAt"
12235
+ }
12236
+ ],
11734
12237
  "emits": [
11735
12238
  {
11736
12239
  "event": "AuditRecorded",
@@ -12421,6 +12924,60 @@ function stdBillableHourBillableHourOrbital(params = {}) {
12421
12924
  "type": "string"
12422
12925
  }
12423
12926
  },
12927
+ "effectRow": [
12928
+ {
12929
+ "kind": "fetch",
12930
+ "resource": "BillableHour"
12931
+ },
12932
+ {
12933
+ "kind": "render-ui",
12934
+ "resource": "main"
12935
+ },
12936
+ {
12937
+ "kind": "set",
12938
+ "resource": "@entity.description"
12939
+ },
12940
+ {
12941
+ "kind": "set",
12942
+ "resource": "@entity.hours"
12943
+ },
12944
+ {
12945
+ "kind": "set",
12946
+ "resource": "@entity.id"
12947
+ },
12948
+ {
12949
+ "kind": "set",
12950
+ "resource": "@entity.invoiceStatus"
12951
+ },
12952
+ {
12953
+ "kind": "set",
12954
+ "resource": "@entity.isBillable"
12955
+ },
12956
+ {
12957
+ "kind": "set",
12958
+ "resource": "@entity.matterId"
12959
+ },
12960
+ {
12961
+ "kind": "set",
12962
+ "resource": "@entity.projectId"
12963
+ },
12964
+ {
12965
+ "kind": "set",
12966
+ "resource": "@entity.rate"
12967
+ },
12968
+ {
12969
+ "kind": "set",
12970
+ "resource": "@entity.workDate"
12971
+ },
12972
+ {
12973
+ "kind": "set",
12974
+ "resource": "@entity.workerId"
12975
+ },
12976
+ {
12977
+ "kind": "set",
12978
+ "resource": "@entity.workerName"
12979
+ }
12980
+ ],
12424
12981
  "emits": [
12425
12982
  {
12426
12983
  "description": "Signals the display of the hours list.",
@@ -14232,6 +14789,52 @@ function stdBoardBoardOrbital(params = {}) {
14232
14789
  "type": "string"
14233
14790
  }
14234
14791
  },
14792
+ "effectRow": [
14793
+ {
14794
+ "kind": "fetch",
14795
+ "resource": "BoardView"
14796
+ },
14797
+ {
14798
+ "kind": "persist",
14799
+ "resource": "BoardView"
14800
+ },
14801
+ {
14802
+ "kind": "render-ui",
14803
+ "resource": "main"
14804
+ },
14805
+ {
14806
+ "kind": "set",
14807
+ "resource": "@entity.boards"
14808
+ },
14809
+ {
14810
+ "kind": "set",
14811
+ "resource": "@entity.currentDescription"
14812
+ },
14813
+ {
14814
+ "kind": "set",
14815
+ "resource": "@entity.currentId"
14816
+ },
14817
+ {
14818
+ "kind": "set",
14819
+ "resource": "@entity.currentNotes"
14820
+ },
14821
+ {
14822
+ "kind": "set",
14823
+ "resource": "@entity.currentRow"
14824
+ },
14825
+ {
14826
+ "kind": "set",
14827
+ "resource": "@entity.currentStage"
14828
+ },
14829
+ {
14830
+ "kind": "set",
14831
+ "resource": "@entity.currentTitle"
14832
+ },
14833
+ {
14834
+ "kind": "set",
14835
+ "resource": "@entity.errorMessage"
14836
+ }
14837
+ ],
14235
14838
  "emits": [
14236
14839
  {
14237
14840
  "description": "Indicates a card within the board has been selected.",
@@ -17232,6 +17835,16 @@ function stdBrowseBrowseItemOrbital(params = {}) {
17232
17835
  "type": "pattern"
17233
17836
  }
17234
17837
  },
17838
+ "effectRow": [
17839
+ {
17840
+ "kind": "fetch",
17841
+ "resource": "BrowseItem"
17842
+ },
17843
+ {
17844
+ "kind": "render-ui",
17845
+ "resource": "main"
17846
+ }
17847
+ ],
17235
17848
  "emits": [
17236
17849
  {
17237
17850
  "description": "Signals that a browse item has been successfully loaded.",
@@ -19015,6 +19628,20 @@ function stdCacheAsideCacheEntryOrbital(params = {}) {
19015
19628
  "type": "number"
19016
19629
  }
19017
19630
  },
19631
+ "effectRow": [
19632
+ {
19633
+ "kind": "fetch",
19634
+ "resource": "CacheEntry"
19635
+ },
19636
+ {
19637
+ "kind": "persist",
19638
+ "resource": "CacheEntry"
19639
+ },
19640
+ {
19641
+ "kind": "render-ui",
19642
+ "resource": "main"
19643
+ }
19644
+ ],
19018
19645
  "emits": [
19019
19646
  {
19020
19647
  "description": "Indicates a cache entry has been successfully retrieved.",
@@ -20966,6 +21593,24 @@ function stdCalendarCalendarEventOrbital(params = {}) {
20966
21593
  "type": "render-ui"
20967
21594
  }
20968
21595
  },
21596
+ "effectRow": [
21597
+ {
21598
+ "kind": "fetch",
21599
+ "resource": "CalendarEvent"
21600
+ },
21601
+ {
21602
+ "kind": "render-ui",
21603
+ "resource": "main"
21604
+ },
21605
+ {
21606
+ "kind": "set",
21607
+ "resource": "@entity.selectedRange"
21608
+ },
21609
+ {
21610
+ "kind": "set",
21611
+ "resource": "@entity.weekAnchor"
21612
+ }
21613
+ ],
20969
21614
  "emits": [
20970
21615
  {
20971
21616
  "description": "Indicates that calendar events have been successfully retrieved.",
@@ -21980,6 +22625,72 @@ function stdCalendarSyncCalendarSyncOrbital(params = {}) {
21980
22625
  "type": "string"
21981
22626
  }
21982
22627
  },
22628
+ "effectRow": [
22629
+ {
22630
+ "kind": "call-service",
22631
+ "resource": "calendar.createEvent"
22632
+ },
22633
+ {
22634
+ "kind": "call-service",
22635
+ "resource": "calendar.listEvents"
22636
+ },
22637
+ {
22638
+ "kind": "emit",
22639
+ "resource": "CAL_SYNCED"
22640
+ },
22641
+ {
22642
+ "kind": "emit",
22643
+ "resource": "PULL_NEXT"
22644
+ },
22645
+ {
22646
+ "kind": "fetch",
22647
+ "resolved": false,
22648
+ "resource": "@config.targetEntity"
22649
+ },
22650
+ {
22651
+ "kind": "fetch",
22652
+ "resolved": false,
22653
+ "resource": "@config.targetEntity",
22654
+ "site": "tick"
22655
+ },
22656
+ {
22657
+ "kind": "fetch",
22658
+ "resource": "CalendarEvent"
22659
+ },
22660
+ {
22661
+ "kind": "persist",
22662
+ "resolved": false,
22663
+ "resource": "@config.targetEntity"
22664
+ },
22665
+ {
22666
+ "kind": "persist",
22667
+ "resource": "CalendarEvent"
22668
+ },
22669
+ {
22670
+ "kind": "set",
22671
+ "resource": "@entity.headId"
22672
+ },
22673
+ {
22674
+ "kind": "set",
22675
+ "resource": "@entity.lastError"
22676
+ },
22677
+ {
22678
+ "kind": "set",
22679
+ "resource": "@entity.lastSyncedAt"
22680
+ },
22681
+ {
22682
+ "kind": "set",
22683
+ "resource": "@entity.pending"
22684
+ },
22685
+ {
22686
+ "kind": "set",
22687
+ "resource": "@entity.syncToken"
22688
+ },
22689
+ {
22690
+ "kind": "ticks",
22691
+ "site": "tick"
22692
+ }
22693
+ ],
21983
22694
  "emits": [
21984
22695
  {
21985
22696
  "description": "A full push+pull cycle completed; wire to std-notify-on-event or a status surface.",
@@ -23392,6 +24103,38 @@ function stdCascadeOnDeleteCascadeOnDeleteOrbital(params = {}) {
23392
24103
  "type": "entity"
23393
24104
  }
23394
24105
  },
24106
+ "effectRow": [
24107
+ {
24108
+ "kind": "emit",
24109
+ "resource": "CascadeCompleted"
24110
+ },
24111
+ {
24112
+ "kind": "emit",
24113
+ "resource": "CascadeRowDeleted"
24114
+ },
24115
+ {
24116
+ "kind": "fetch",
24117
+ "resolved": false,
24118
+ "resource": "@config.dependentEntity"
24119
+ },
24120
+ {
24121
+ "kind": "persist",
24122
+ "resolved": false,
24123
+ "resource": "@config.dependentEntity"
24124
+ },
24125
+ {
24126
+ "kind": "set",
24127
+ "resource": "@entity.headId"
24128
+ },
24129
+ {
24130
+ "kind": "set",
24131
+ "resource": "@entity.parentEntity"
24132
+ },
24133
+ {
24134
+ "kind": "set",
24135
+ "resource": "@entity.parentId"
24136
+ }
24137
+ ],
23395
24138
  "emits": [
23396
24139
  {
23397
24140
  "event": "CascadeRowDeleted",
@@ -24539,6 +25282,28 @@ function stdCircuitBreakerServiceNodeOrbital(params = {}) {
24539
25282
  ]
24540
25283
  }
24541
25284
  },
25285
+ "effectRow": [
25286
+ {
25287
+ "kind": "fetch",
25288
+ "resource": "ServiceNode"
25289
+ },
25290
+ {
25291
+ "kind": "render-ui",
25292
+ "resource": "main"
25293
+ },
25294
+ {
25295
+ "kind": "set",
25296
+ "resource": "@entity.failureCount"
25297
+ },
25298
+ {
25299
+ "kind": "set",
25300
+ "resource": "@entity.successCount"
25301
+ },
25302
+ {
25303
+ "kind": "set",
25304
+ "resource": "@entity.threshold"
25305
+ }
25306
+ ],
24542
25307
  "emits": [
24543
25308
  {
24544
25309
  "description": "Signals successful loading of a service node.",
@@ -25265,6 +26030,24 @@ function stdConfirmationConfirmActionOrbital(params = {}) {
25265
26030
  "type": "string"
25266
26031
  }
25267
26032
  },
26033
+ "effectRow": [
26034
+ {
26035
+ "kind": "fetch",
26036
+ "resource": "ConfirmAction"
26037
+ },
26038
+ {
26039
+ "kind": "render-ui",
26040
+ "resource": "modal"
26041
+ },
26042
+ {
26043
+ "kind": "set",
26044
+ "resource": "@entity.name"
26045
+ },
26046
+ {
26047
+ "kind": "set",
26048
+ "resource": "@entity.pendingId"
26049
+ }
26050
+ ],
25268
26051
  "emits": [
25269
26052
  {
25270
26053
  "description": "Indicates the user has approved the action.",
@@ -25749,6 +26532,34 @@ function stdCooldownCooldownOrbital(params = {}) {
25749
26532
  "type": "number"
25750
26533
  }
25751
26534
  },
26535
+ "effectRow": [
26536
+ {
26537
+ "kind": "emit",
26538
+ "resource": "CooldownReady"
26539
+ },
26540
+ {
26541
+ "kind": "emit",
26542
+ "resource": "EXPIRE",
26543
+ "site": "tick"
26544
+ },
26545
+ {
26546
+ "kind": "set",
26547
+ "resource": "@entity.active"
26548
+ },
26549
+ {
26550
+ "kind": "set",
26551
+ "resource": "@entity.remainingMs"
26552
+ },
26553
+ {
26554
+ "kind": "set",
26555
+ "resource": "@entity.remainingMs",
26556
+ "site": "tick"
26557
+ },
26558
+ {
26559
+ "kind": "ticks",
26560
+ "site": "tick"
26561
+ }
26562
+ ],
25752
26563
  "emits": [
25753
26564
  {
25754
26565
  "description": "Fired when the cooldown expires; wire to re-enable the ability or action.",
@@ -26088,6 +26899,28 @@ function stdCrossReferenceCrossReferenceOrbital(params = {}) {
26088
26899
  traits: [
26089
26900
  {
26090
26901
  "category": "lifecycle",
26902
+ "effectRow": [
26903
+ {
26904
+ "kind": "emit",
26905
+ "resource": "LinksLoaded"
26906
+ },
26907
+ {
26908
+ "kind": "fetch",
26909
+ "resource": "CrossRefLink"
26910
+ },
26911
+ {
26912
+ "kind": "persist",
26913
+ "resource": "CrossRefLink"
26914
+ },
26915
+ {
26916
+ "kind": "set",
26917
+ "resource": "@entity.filteredLinks"
26918
+ },
26919
+ {
26920
+ "kind": "set",
26921
+ "resource": "@entity.leftId"
26922
+ }
26923
+ ],
26091
26924
  "emits": [
26092
26925
  {
26093
26926
  "description": "Fired after a junction row is persisted.",
@@ -26644,6 +27477,12 @@ function stdDashboardGridEmbeddedDashboardGridEmbeddedOrbital(params = {}) {
26644
27477
  }),
26645
27478
  {
26646
27479
  "category": "interaction",
27480
+ "effectRow": [
27481
+ {
27482
+ "kind": "render-ui",
27483
+ "resource": "main"
27484
+ }
27485
+ ],
26647
27486
  "linkedEntity": "DashboardGridEmbeddedData",
26648
27487
  "name": "EmptyTile",
26649
27488
  "scope": "instance",
@@ -26827,6 +27666,12 @@ function stdDashboardGridEmbeddedDashboardGridEmbeddedOrbital(params = {}) {
26827
27666
  "type": "trait"
26828
27667
  }
26829
27668
  },
27669
+ "effectRow": [
27670
+ {
27671
+ "kind": "render-ui",
27672
+ "resource": "main"
27673
+ }
27674
+ ],
26830
27675
  "linkedEntity": "DashboardGridEmbeddedData",
26831
27676
  "name": "DashboardGridEmbedded",
26832
27677
  "scope": "instance",
@@ -27076,6 +27921,24 @@ function stdDataCollectorMlDataCollectorOrbital(params = {}) {
27076
27921
  "type": "int"
27077
27922
  }
27078
27923
  },
27924
+ "effectRow": [
27925
+ {
27926
+ "kind": "emit",
27927
+ "resource": "BUFFER_READY"
27928
+ },
27929
+ {
27930
+ "kind": "set",
27931
+ "resource": "@entity.buffer"
27932
+ },
27933
+ {
27934
+ "kind": "set",
27935
+ "resource": "@entity.count"
27936
+ },
27937
+ {
27938
+ "kind": "set",
27939
+ "resource": "@entity.status"
27940
+ }
27941
+ ],
27079
27942
  "emits": [
27080
27943
  {
27081
27944
  "description": "Fired when the buffer reaches config.bufferSize; carries the full accumulated buffer and its count, then the buffer resets for the next cycle.",
@@ -27771,6 +28634,50 @@ function stdDataErasureDataErasureOrbital(params = {}) {
27771
28634
  "type": "string"
27772
28635
  }
27773
28636
  },
28637
+ "effectRow": [
28638
+ {
28639
+ "kind": "emit",
28640
+ "resource": "ExecuteErasure"
28641
+ },
28642
+ {
28643
+ "kind": "fetch",
28644
+ "resource": "ErasureRequest"
28645
+ },
28646
+ {
28647
+ "kind": "fetch",
28648
+ "resource": "ErasureRequest",
28649
+ "site": "tick"
28650
+ },
28651
+ {
28652
+ "kind": "persist",
28653
+ "resource": "ErasureRequest"
28654
+ },
28655
+ {
28656
+ "kind": "render-ui",
28657
+ "resolved": false,
28658
+ "resource": "@config.reviewSlot"
28659
+ },
28660
+ {
28661
+ "kind": "set",
28662
+ "resource": "@entity.id"
28663
+ },
28664
+ {
28665
+ "kind": "set",
28666
+ "resource": "@entity.status"
28667
+ },
28668
+ {
28669
+ "kind": "set",
28670
+ "resource": "@entity.subjectId"
28671
+ },
28672
+ {
28673
+ "kind": "set",
28674
+ "resource": "@entity.targetEntity"
28675
+ },
28676
+ {
28677
+ "kind": "ticks",
28678
+ "site": "tick"
28679
+ }
28680
+ ],
27774
28681
  "emits": [
27775
28682
  {
27776
28683
  "description": "Signals a request cancellation during its processing lifecycle.",
@@ -28988,6 +29895,20 @@ function stdDateRangeDateRangeOrbital(params = {}) {
28988
29895
  "type": "string"
28989
29896
  }
28990
29897
  },
29898
+ "effectRow": [
29899
+ {
29900
+ "kind": "render-ui",
29901
+ "resource": "main"
29902
+ },
29903
+ {
29904
+ "kind": "set",
29905
+ "resource": "@entity.from"
29906
+ },
29907
+ {
29908
+ "kind": "set",
29909
+ "resource": "@entity.to"
29910
+ }
29911
+ ],
28991
29912
  "emits": [
28992
29913
  {
28993
29914
  "description": "Signals a change in the selected date range.",
@@ -29505,6 +30426,16 @@ function stdEsignFlowSignatureSessionOrbital(params = {}) {
29505
30426
  traits: [
29506
30427
  {
29507
30428
  "category": "interaction",
30429
+ "effectRow": [
30430
+ {
30431
+ "kind": "fetch",
30432
+ "resource": "SignatureSession"
30433
+ },
30434
+ {
30435
+ "kind": "render-ui",
30436
+ "resource": "main"
30437
+ }
30438
+ ],
29508
30439
  "emits": [
29509
30440
  {
29510
30441
  "description": "Indicates a new signature request has been initiated.",
@@ -30376,6 +31307,12 @@ function stdEsignFlowSignatureSessionOrbital(params = {}) {
30376
31307
  }),
30377
31308
  {
30378
31309
  "category": "lifecycle",
31310
+ "effectRow": [
31311
+ {
31312
+ "kind": "persist",
31313
+ "resource": "SignatureSession"
31314
+ }
31315
+ ],
30379
31316
  "emits": [
30380
31317
  {
30381
31318
  "description": "A new signature session has been initialized.",
@@ -30603,6 +31540,27 @@ function stdEsignFlowSignatureSessionOrbital(params = {}) {
30603
31540
  },
30604
31541
  {
30605
31542
  "category": "lifecycle",
31543
+ "effectRow": [
31544
+ {
31545
+ "kind": "call-service",
31546
+ "resource": "esign.getEnvelopeStatus"
31547
+ },
31548
+ {
31549
+ "kind": "call-service",
31550
+ "resource": "esign.sendEnvelope"
31551
+ },
31552
+ {
31553
+ "kind": "notify"
31554
+ },
31555
+ {
31556
+ "kind": "persist",
31557
+ "resource": "SignatureSession"
31558
+ },
31559
+ {
31560
+ "kind": "set",
31561
+ "resource": "@entity.id"
31562
+ }
31563
+ ],
30606
31564
  "emits": [
30607
31565
  {
30608
31566
  "description": "The provider accepted the envelope; carries its id.",
@@ -31646,6 +32604,23 @@ function stdEsignRequestESignRequestOrbital(params = {}) {
31646
32604
  "type": "string"
31647
32605
  }
31648
32606
  },
32607
+ "effectRow": [
32608
+ {
32609
+ "kind": "fetch",
32610
+ "resource": "ESignRequest"
32611
+ },
32612
+ {
32613
+ "kind": "notify"
32614
+ },
32615
+ {
32616
+ "kind": "render-ui",
32617
+ "resource": "main"
32618
+ },
32619
+ {
32620
+ "kind": "set",
32621
+ "resource": "@entity.id"
32622
+ }
32623
+ ],
31649
32624
  "emits": [
31650
32625
  {
31651
32626
  "description": "Signals a request has been sent for signature.",
@@ -32452,6 +33427,56 @@ function stdEventLogEventLogOrbital(params = {}) {
32452
33427
  "type": "string"
32453
33428
  }
32454
33429
  },
33430
+ "effectRow": [
33431
+ {
33432
+ "kind": "fetch",
33433
+ "resource": "EventLogView"
33434
+ },
33435
+ {
33436
+ "kind": "persist",
33437
+ "resource": "EventLogView"
33438
+ },
33439
+ {
33440
+ "kind": "render-ui",
33441
+ "resource": "main"
33442
+ },
33443
+ {
33444
+ "kind": "set",
33445
+ "resource": "@entity.allEntries"
33446
+ },
33447
+ {
33448
+ "kind": "set",
33449
+ "resource": "@entity.backfillDate"
33450
+ },
33451
+ {
33452
+ "kind": "set",
33453
+ "resource": "@entity.backfillDescription"
33454
+ },
33455
+ {
33456
+ "kind": "set",
33457
+ "resource": "@entity.backfillKind"
33458
+ },
33459
+ {
33460
+ "kind": "set",
33461
+ "resource": "@entity.backfillTitle"
33462
+ },
33463
+ {
33464
+ "kind": "set",
33465
+ "resource": "@entity.entries"
33466
+ },
33467
+ {
33468
+ "kind": "set",
33469
+ "resource": "@entity.errorMessage"
33470
+ },
33471
+ {
33472
+ "kind": "set",
33473
+ "resource": "@entity.filterChips"
33474
+ },
33475
+ {
33476
+ "kind": "set",
33477
+ "resource": "@entity.filterKind"
33478
+ }
33479
+ ],
32455
33480
  "emits": [
32456
33481
  {
32457
33482
  "description": "Signals a filter has been applied to the event log.",
@@ -34330,6 +35355,12 @@ function stdExportExportOrbital(params = {}) {
34330
35355
  "type": "string"
34331
35356
  }
34332
35357
  },
35358
+ "effectRow": [
35359
+ {
35360
+ "kind": "render-ui",
35361
+ "resource": "main"
35362
+ }
35363
+ ],
34333
35364
  "emits": [
34334
35365
  {
34335
35366
  "description": "Requests export of data in the picked format. itemId is the format id (matches the FormatOption.id/format of the picked entry).",
@@ -34949,6 +35980,32 @@ function stdFileStoreStoredFileOrbital(params = {}) {
34949
35980
  "type": "[TreeNode]"
34950
35981
  }
34951
35982
  },
35983
+ "effectRow": [
35984
+ {
35985
+ "kind": "fetch",
35986
+ "resource": "StoredFile"
35987
+ },
35988
+ {
35989
+ "kind": "render-ui",
35990
+ "resource": "main"
35991
+ },
35992
+ {
35993
+ "kind": "set",
35994
+ "resource": "@entity.folder"
35995
+ },
35996
+ {
35997
+ "kind": "set",
35998
+ "resource": "@entity.id"
35999
+ },
36000
+ {
36001
+ "kind": "set",
36002
+ "resource": "@entity.name"
36003
+ },
36004
+ {
36005
+ "kind": "set",
36006
+ "resource": "@entity.path"
36007
+ }
36008
+ ],
34952
36009
  "emits": [
34953
36010
  {
34954
36011
  "description": "Indicates a file has been selected for viewing.",
@@ -36128,6 +37185,28 @@ function stdFilterFilterTargetOrbital(params = {}) {
36128
37185
  "type": "[FilterSpec]"
36129
37186
  }
36130
37187
  },
37188
+ "effectRow": [
37189
+ {
37190
+ "kind": "emit",
37191
+ "resource": "FILTER"
37192
+ },
37193
+ {
37194
+ "kind": "fetch",
37195
+ "resource": "FilterTarget"
37196
+ },
37197
+ {
37198
+ "kind": "render-ui",
37199
+ "resource": "main"
37200
+ },
37201
+ {
37202
+ "kind": "set",
37203
+ "resource": "@entity.field"
37204
+ },
37205
+ {
37206
+ "kind": "set",
37207
+ "resource": "@entity.value"
37208
+ }
37209
+ ],
36131
37210
  "emits": [
36132
37211
  {
36133
37212
  "description": "Signals a filter has been applied or changed.",
@@ -36668,6 +37747,23 @@ function stdFormAdvancedFormEntryOrbital(params = {}) {
36668
37747
  "type": "string"
36669
37748
  }
36670
37749
  },
37750
+ "effectRow": [
37751
+ {
37752
+ "kind": "fetch",
37753
+ "resource": "FormEntry"
37754
+ },
37755
+ {
37756
+ "kind": "notify"
37757
+ },
37758
+ {
37759
+ "kind": "persist",
37760
+ "resource": "FormEntry"
37761
+ },
37762
+ {
37763
+ "kind": "render-ui",
37764
+ "resource": "main"
37765
+ }
37766
+ ],
36671
37767
  "emits": [
36672
37768
  {
36673
37769
  "description": "Signals successful loading of form entry data.",
@@ -37749,6 +38845,24 @@ function stdGalleryGalleryItemOrbital(params = {}) {
37749
38845
  "type": "string"
37750
38846
  }
37751
38847
  },
38848
+ "effectRow": [
38849
+ {
38850
+ "kind": "fetch",
38851
+ "resource": "GalleryItem"
38852
+ },
38853
+ {
38854
+ "kind": "render-ui",
38855
+ "resource": "main"
38856
+ },
38857
+ {
38858
+ "kind": "render-ui",
38859
+ "resource": "modal"
38860
+ },
38861
+ {
38862
+ "kind": "set",
38863
+ "resource": "@entity.id"
38864
+ }
38865
+ ],
37752
38866
  "emits": [
37753
38867
  {
37754
38868
  "description": "Signals an item has been selected for viewing.",
@@ -38651,6 +39765,26 @@ function stdGameClockGameClockOrbital(params = {}) {
38651
39765
  "type": "boolean"
38652
39766
  }
38653
39767
  },
39768
+ "effectRow": [
39769
+ {
39770
+ "kind": "emit",
39771
+ "resource": "GameClockTicked",
39772
+ "site": "tick"
39773
+ },
39774
+ {
39775
+ "kind": "set",
39776
+ "resource": "@entity.elapsedMs",
39777
+ "site": "tick"
39778
+ },
39779
+ {
39780
+ "kind": "set",
39781
+ "resource": "@entity.running"
39782
+ },
39783
+ {
39784
+ "kind": "ticks",
39785
+ "site": "tick"
39786
+ }
39787
+ ],
38654
39788
  "emits": [
38655
39789
  {
38656
39790
  "description": "Fires every clock tick while running; consumers use elapsedMs to drive animations and game logic.",
@@ -39076,6 +40210,28 @@ function stdGeosearchGeoSearchResultOrbital(params = {}) {
39076
40210
  "type": "string"
39077
40211
  }
39078
40212
  },
40213
+ "effectRow": [
40214
+ {
40215
+ "kind": "render-ui",
40216
+ "resource": "main"
40217
+ },
40218
+ {
40219
+ "kind": "set",
40220
+ "resource": "@entity.centerLat"
40221
+ },
40222
+ {
40223
+ "kind": "set",
40224
+ "resource": "@entity.centerLng"
40225
+ },
40226
+ {
40227
+ "kind": "set",
40228
+ "resource": "@entity.radiusKm"
40229
+ },
40230
+ {
40231
+ "kind": "set",
40232
+ "resource": "@entity.searchTerm"
40233
+ }
40234
+ ],
39079
40235
  "emits": [
39080
40236
  {
39081
40237
  "description": "Indicates a search request with location parameters.",
@@ -39511,6 +40667,32 @@ function stdGraphBuilderGraphBuilderOrbital(params = {}) {
39511
40667
  "type": "[string]"
39512
40668
  }
39513
40669
  },
40670
+ "effectRow": [
40671
+ {
40672
+ "kind": "emit",
40673
+ "resource": "GRAPH_READY"
40674
+ },
40675
+ {
40676
+ "kind": "set",
40677
+ "resource": "@entity.edgeCount"
40678
+ },
40679
+ {
40680
+ "kind": "set",
40681
+ "resource": "@entity.edges"
40682
+ },
40683
+ {
40684
+ "kind": "set",
40685
+ "resource": "@entity.nodeCount"
40686
+ },
40687
+ {
40688
+ "kind": "set",
40689
+ "resource": "@entity.nodes"
40690
+ },
40691
+ {
40692
+ "kind": "set",
40693
+ "resource": "@entity.status"
40694
+ }
40695
+ ],
39514
40696
  "emits": [
39515
40697
  {
39516
40698
  "description": "Fired when node/edge structures have been built from the source entity collection",
@@ -40196,6 +41378,16 @@ function stdGraphsGraphItemOrbital(params = {}) {
40196
41378
  "type": "pattern"
40197
41379
  }
40198
41380
  },
41381
+ "effectRow": [
41382
+ {
41383
+ "kind": "render-ui",
41384
+ "resource": "main"
41385
+ },
41386
+ {
41387
+ "kind": "set",
41388
+ "resource": "@entity.chartData"
41389
+ }
41390
+ ],
40199
41391
  "entityContract": {
40200
41392
  "provides": [
40201
41393
  "chartData"
@@ -40806,6 +41998,24 @@ function stdImageUploadMultiUploadedImageOrbital(params = {}) {
40806
41998
  "type": "string"
40807
41999
  }
40808
42000
  },
42001
+ "effectRow": [
42002
+ {
42003
+ "kind": "call-service",
42004
+ "resource": "storage.uploadMany"
42005
+ },
42006
+ {
42007
+ "kind": "fetch",
42008
+ "resource": "UploadedImage"
42009
+ },
42010
+ {
42011
+ "kind": "persist",
42012
+ "resource": "UploadedImage"
42013
+ },
42014
+ {
42015
+ "kind": "render-ui",
42016
+ "resource": "main"
42017
+ }
42018
+ ],
40809
42019
  "emits": [
40810
42020
  {
40811
42021
  "description": "Signals that an image upload process has begun.",
@@ -43086,6 +44296,40 @@ function stdLifecycleLifecycleOrbital(params = {}) {
43086
44296
  "type": "string"
43087
44297
  }
43088
44298
  },
44299
+ "effectRow": [
44300
+ {
44301
+ "kind": "emit",
44302
+ "resource": "LifecycleTransitioned"
44303
+ },
44304
+ {
44305
+ "kind": "fetch",
44306
+ "resolved": false,
44307
+ "resource": "@config.targetEntity"
44308
+ },
44309
+ {
44310
+ "kind": "fetch",
44311
+ "resolved": false,
44312
+ "resource": "@config.targetEntity",
44313
+ "site": "tick"
44314
+ },
44315
+ {
44316
+ "kind": "persist",
44317
+ "resolved": false,
44318
+ "resource": "@config.targetEntity"
44319
+ },
44320
+ {
44321
+ "kind": "set",
44322
+ "resource": "@entity.headId"
44323
+ },
44324
+ {
44325
+ "kind": "set",
44326
+ "resource": "@entity.headStatus"
44327
+ },
44328
+ {
44329
+ "kind": "ticks",
44330
+ "site": "tick"
44331
+ }
44332
+ ],
43089
44333
  "emits": [
43090
44334
  {
43091
44335
  "event": "LifecycleTransitioned",
@@ -43779,6 +45023,16 @@ function stdListListItemOrbital(params = {}) {
43779
45023
  "type": "string"
43780
45024
  }
43781
45025
  },
45026
+ "effectRow": [
45027
+ {
45028
+ "kind": "fetch",
45029
+ "resource": "ListItem"
45030
+ },
45031
+ {
45032
+ "kind": "render-ui",
45033
+ "resource": "main"
45034
+ }
45035
+ ],
43782
45036
  "emits": [
43783
45037
  {
43784
45038
  "description": "Signals a new item has been successfully created.",
@@ -44779,6 +46033,12 @@ function stdListListItemOrbital(params = {}) {
44779
46033
  }),
44780
46034
  {
44781
46035
  "category": "lifecycle",
46036
+ "effectRow": [
46037
+ {
46038
+ "kind": "persist",
46039
+ "resource": "ListItem"
46040
+ }
46041
+ ],
44782
46042
  "emits": [
44783
46043
  {
44784
46044
  "description": "Signals a new item has been added to the list.",
@@ -46087,6 +47347,97 @@ function stdMigrationJobMigrationJobOrbital(params = {}) {
46087
47347
  "type": "string"
46088
47348
  }
46089
47349
  },
47350
+ "effectRow": [
47351
+ {
47352
+ "kind": "call-service",
47353
+ "resource": "migration.commit"
47354
+ },
47355
+ {
47356
+ "kind": "call-service",
47357
+ "resource": "migration.fetchDocument"
47358
+ },
47359
+ {
47360
+ "kind": "call-service",
47361
+ "resource": "migration.listDocuments"
47362
+ },
47363
+ {
47364
+ "kind": "emit",
47365
+ "resource": "MIGRATION_COMPLETED"
47366
+ },
47367
+ {
47368
+ "kind": "emit",
47369
+ "resource": "MIGRATION_DOCUMENT"
47370
+ },
47371
+ {
47372
+ "kind": "emit",
47373
+ "resource": "MIGRATION_FAILED"
47374
+ },
47375
+ {
47376
+ "kind": "emit",
47377
+ "resource": "MIGRATION_FETCHED"
47378
+ },
47379
+ {
47380
+ "kind": "emit",
47381
+ "resource": "MIGRATION_REVIEW_READY"
47382
+ },
47383
+ {
47384
+ "kind": "persist",
47385
+ "resource": "MigrationJob"
47386
+ },
47387
+ {
47388
+ "kind": "render-ui",
47389
+ "resolved": false,
47390
+ "resource": "@config.reviewSlot"
47391
+ },
47392
+ {
47393
+ "kind": "set",
47394
+ "resource": "@entity.createdAt"
47395
+ },
47396
+ {
47397
+ "kind": "set",
47398
+ "resource": "@entity.document"
47399
+ },
47400
+ {
47401
+ "kind": "set",
47402
+ "resource": "@entity.documents"
47403
+ },
47404
+ {
47405
+ "kind": "set",
47406
+ "resource": "@entity.error"
47407
+ },
47408
+ {
47409
+ "kind": "set",
47410
+ "resource": "@entity.files"
47411
+ },
47412
+ {
47413
+ "kind": "set",
47414
+ "resource": "@entity.skipped"
47415
+ },
47416
+ {
47417
+ "kind": "set",
47418
+ "resource": "@entity.source"
47419
+ },
47420
+ {
47421
+ "kind": "set",
47422
+ "resource": "@entity.stats"
47423
+ },
47424
+ {
47425
+ "kind": "set",
47426
+ "resource": "@entity.status"
47427
+ },
47428
+ {
47429
+ "kind": "set",
47430
+ "resource": "@entity.target"
47431
+ },
47432
+ {
47433
+ "kind": "set",
47434
+ "resource": "@entity.units"
47435
+ },
47436
+ {
47437
+ "kind": "set",
47438
+ "resource": "@entity.validationErrors"
47439
+ }
47440
+ ],
46090
47441
  "emits": [
46091
47442
  {
46092
47443
  "description": "migration.listDocuments service result, flattened onto the payload by the call-service effect executor",
@@ -47509,6 +48860,48 @@ function stdMlClassifyMlClassifyOrbital(params = {}) {
47509
48860
  "type": "string"
47510
48861
  }
47511
48862
  },
48863
+ "effectRow": [
48864
+ {
48865
+ "kind": "call-service",
48866
+ "resource": "llm.classify"
48867
+ },
48868
+ {
48869
+ "kind": "emit",
48870
+ "resource": "CLASSIFIED"
48871
+ },
48872
+ {
48873
+ "kind": "emit",
48874
+ "resource": "CLASSIFY_FAILED"
48875
+ },
48876
+ {
48877
+ "kind": "set",
48878
+ "resource": "@entity.category"
48879
+ },
48880
+ {
48881
+ "kind": "set",
48882
+ "resource": "@entity.confidence"
48883
+ },
48884
+ {
48885
+ "kind": "set",
48886
+ "resource": "@entity.errorMessage"
48887
+ },
48888
+ {
48889
+ "kind": "set",
48890
+ "resource": "@entity.reasoning"
48891
+ },
48892
+ {
48893
+ "kind": "set",
48894
+ "resource": "@entity.request"
48895
+ },
48896
+ {
48897
+ "kind": "set",
48898
+ "resource": "@entity.status"
48899
+ },
48900
+ {
48901
+ "kind": "set",
48902
+ "resource": "@entity.text"
48903
+ }
48904
+ ],
47512
48905
  "emits": [
47513
48906
  {
47514
48907
  "description": "Raw llm.classify service result, flattened onto the payload by the call-service effect executor",
@@ -48097,6 +49490,24 @@ function stdMlExactCheckMlExactCheckOrbital(params = {}) {
48097
49490
  "type": "boolean"
48098
49491
  }
48099
49492
  },
49493
+ "effectRow": [
49494
+ {
49495
+ "kind": "emit",
49496
+ "resource": "EXACT_MATCHED"
49497
+ },
49498
+ {
49499
+ "kind": "emit",
49500
+ "resource": "EXACT_UNMATCHED"
49501
+ },
49502
+ {
49503
+ "kind": "set",
49504
+ "resource": "@entity.matched"
49505
+ },
49506
+ {
49507
+ "kind": "set",
49508
+ "resource": "@entity.status"
49509
+ }
49510
+ ],
48100
49511
  "emits": [
48101
49512
  {
48102
49513
  "description": "Fired when the candidate exactly equals the key under the configured normalization",
@@ -48758,6 +50169,48 @@ function stdMlInferMlInferOrbital(params = {}) {
48758
50169
  "type": "OutputContract"
48759
50170
  }
48760
50171
  },
50172
+ "effectRow": [
50173
+ {
50174
+ "kind": "call-service",
50175
+ "resource": "ml.infer"
50176
+ },
50177
+ {
50178
+ "kind": "emit",
50179
+ "resource": "INFERRED"
50180
+ },
50181
+ {
50182
+ "kind": "emit",
50183
+ "resource": "INFER_ABSTAINED"
50184
+ },
50185
+ {
50186
+ "kind": "set",
50187
+ "resource": "@entity.confidence"
50188
+ },
50189
+ {
50190
+ "kind": "set",
50191
+ "resource": "@entity.input"
50192
+ },
50193
+ {
50194
+ "kind": "set",
50195
+ "resource": "@entity.output"
50196
+ },
50197
+ {
50198
+ "kind": "set",
50199
+ "resource": "@entity.reason"
50200
+ },
50201
+ {
50202
+ "kind": "set",
50203
+ "resource": "@entity.request"
50204
+ },
50205
+ {
50206
+ "kind": "set",
50207
+ "resource": "@entity.status"
50208
+ },
50209
+ {
50210
+ "kind": "set",
50211
+ "resource": "@entity.violations"
50212
+ }
50213
+ ],
48761
50214
  "emits": [
48762
50215
  {
48763
50216
  "description": "Raw ml.infer service result, flattened onto the payload by the call-service effect executor",
@@ -49456,6 +50909,40 @@ function stdMlLabelCaptureMlLabelCaptureOrbital(params = {}) {
49456
50909
  "type": "string"
49457
50910
  }
49458
50911
  },
50912
+ "effectRow": [
50913
+ {
50914
+ "kind": "emit",
50915
+ "resource": "LABEL_CAPTURED"
50916
+ },
50917
+ {
50918
+ "kind": "persist",
50919
+ "resource": "LabeledExample"
50920
+ },
50921
+ {
50922
+ "kind": "set",
50923
+ "resource": "@entity.input"
50924
+ },
50925
+ {
50926
+ "kind": "set",
50927
+ "resource": "@entity.outcome"
50928
+ },
50929
+ {
50930
+ "kind": "set",
50931
+ "resource": "@entity.recordedAt"
50932
+ },
50933
+ {
50934
+ "kind": "set",
50935
+ "resource": "@entity.sink"
50936
+ },
50937
+ {
50938
+ "kind": "set",
50939
+ "resource": "@entity.source"
50940
+ },
50941
+ {
50942
+ "kind": "set",
50943
+ "resource": "@entity.verdict"
50944
+ }
50945
+ ],
49459
50946
  "emits": [
49460
50947
  {
49461
50948
  "description": "Fired after a labeled example is persisted.",
@@ -49820,6 +51307,24 @@ function stdMlLookupMlLookupOrbital(params = {}) {
49820
51307
  "type": "boolean"
49821
51308
  }
49822
51309
  },
51310
+ "effectRow": [
51311
+ {
51312
+ "kind": "emit",
51313
+ "resource": "KEY_HIT"
51314
+ },
51315
+ {
51316
+ "kind": "emit",
51317
+ "resource": "KEY_MISS"
51318
+ },
51319
+ {
51320
+ "kind": "set",
51321
+ "resource": "@entity.matched"
51322
+ },
51323
+ {
51324
+ "kind": "set",
51325
+ "resource": "@entity.status"
51326
+ }
51327
+ ],
49823
51328
  "emits": [
49824
51329
  {
49825
51330
  "description": "Fired when the candidate matches an entry in the accepted list",
@@ -50351,6 +51856,48 @@ function stdMlPosteriorMlPosteriorOrbital(params = {}) {
50351
51856
  "type": "int"
50352
51857
  }
50353
51858
  },
51859
+ "effectRow": [
51860
+ {
51861
+ "kind": "emit",
51862
+ "resource": "EVIDENCE_INSUFFICIENT"
51863
+ },
51864
+ {
51865
+ "kind": "emit",
51866
+ "resource": "MASTERY_REACHED"
51867
+ },
51868
+ {
51869
+ "kind": "emit",
51870
+ "resource": "REMEDIATION_NEEDED"
51871
+ },
51872
+ {
51873
+ "kind": "set",
51874
+ "resource": "@entity.alpha"
51875
+ },
51876
+ {
51877
+ "kind": "set",
51878
+ "resource": "@entity.beta"
51879
+ },
51880
+ {
51881
+ "kind": "set",
51882
+ "resource": "@entity.intervalHigh"
51883
+ },
51884
+ {
51885
+ "kind": "set",
51886
+ "resource": "@entity.intervalLow"
51887
+ },
51888
+ {
51889
+ "kind": "set",
51890
+ "resource": "@entity.mean"
51891
+ },
51892
+ {
51893
+ "kind": "set",
51894
+ "resource": "@entity.observations"
51895
+ },
51896
+ {
51897
+ "kind": "set",
51898
+ "resource": "@entity.status"
51899
+ }
51900
+ ],
50354
51901
  "emits": [
50355
51902
  {
50356
51903
  "description": "The posterior mean clears masteryFloor with a credible interval narrow enough to trust.",
@@ -51056,6 +52603,63 @@ function stdMlSimilarityMlSimilarityOrbital(params = {}) {
51056
52603
  "type": "float"
51057
52604
  }
51058
52605
  },
52606
+ "effectRow": [
52607
+ {
52608
+ "kind": "emit",
52609
+ "resource": "SIMILARITY_ABSTAINED"
52610
+ },
52611
+ {
52612
+ "kind": "emit",
52613
+ "resource": "SIMILARITY_MATCHED"
52614
+ },
52615
+ {
52616
+ "kind": "llm/embed"
52617
+ },
52618
+ {
52619
+ "kind": "set",
52620
+ "resource": "@entity.candidateVectors"
52621
+ },
52622
+ {
52623
+ "kind": "set",
52624
+ "resource": "@entity.candidates"
52625
+ },
52626
+ {
52627
+ "kind": "set",
52628
+ "resource": "@entity.embeddings"
52629
+ },
52630
+ {
52631
+ "kind": "set",
52632
+ "resource": "@entity.matchIndex"
52633
+ },
52634
+ {
52635
+ "kind": "set",
52636
+ "resource": "@entity.matchMargin"
52637
+ },
52638
+ {
52639
+ "kind": "set",
52640
+ "resource": "@entity.matchScore"
52641
+ },
52642
+ {
52643
+ "kind": "set",
52644
+ "resource": "@entity.query"
52645
+ },
52646
+ {
52647
+ "kind": "set",
52648
+ "resource": "@entity.queryVector"
52649
+ },
52650
+ {
52651
+ "kind": "set",
52652
+ "resource": "@entity.reason"
52653
+ },
52654
+ {
52655
+ "kind": "set",
52656
+ "resource": "@entity.request"
52657
+ },
52658
+ {
52659
+ "kind": "set",
52660
+ "resource": "@entity.status"
52661
+ }
52662
+ ],
51059
52663
  "emits": [
51060
52664
  {
51061
52665
  "description": "Raw embeddings from llm/embed \u2014 query vector at index 0, candidate vectors following in input order",
@@ -52283,6 +53887,21 @@ function stdModQueueModQueueItemOrbital(params = {}) {
52283
53887
  "type": "string"
52284
53888
  }
52285
53889
  },
53890
+ "effectRow": [
53891
+ {
53892
+ "kind": "fetch",
53893
+ "resource": "ModQueueItem"
53894
+ },
53895
+ {
53896
+ "kind": "persist",
53897
+ "resource": "ModQueueItem"
53898
+ },
53899
+ {
53900
+ "kind": "render-ui",
53901
+ "resolved": false,
53902
+ "resource": "@config.reviewSlot"
53903
+ }
53904
+ ],
52286
53905
  "emits": [
52287
53906
  {
52288
53907
  "description": "Signals that a moderation item has been approved.",
@@ -53545,6 +55164,28 @@ function stdModalModalRecordOrbital(params = {}) {
53545
55164
  "type": "string"
53546
55165
  }
53547
55166
  },
55167
+ "effectRow": [
55168
+ {
55169
+ "kind": "fetch",
55170
+ "resource": "ModalRecord"
55171
+ },
55172
+ {
55173
+ "kind": "notify"
55174
+ },
55175
+ {
55176
+ "kind": "render-ui",
55177
+ "resolved": false,
55178
+ "resource": "@config.detailSlot"
55179
+ },
55180
+ {
55181
+ "kind": "set",
55182
+ "resource": "@entity.id"
55183
+ },
55184
+ {
55185
+ "kind": "set",
55186
+ "resource": "@entity.seedRow"
55187
+ }
55188
+ ],
53548
55189
  "emits": [
53549
55190
  {
53550
55191
  "description": "Indicates a successful data save operation.",
@@ -54538,6 +56179,80 @@ function stdMultiPartyFlowMultiPartyFlowOrbital(params = {}) {
54538
56179
  "type": "string"
54539
56180
  }
54540
56181
  },
56182
+ "effectRow": [
56183
+ {
56184
+ "kind": "fetch",
56185
+ "resource": "MultiPartyView"
56186
+ },
56187
+ {
56188
+ "kind": "render-ui",
56189
+ "resource": "main"
56190
+ },
56191
+ {
56192
+ "kind": "set",
56193
+ "resource": "@entity.audit"
56194
+ },
56195
+ {
56196
+ "kind": "set",
56197
+ "resource": "@entity.cancelReason"
56198
+ },
56199
+ {
56200
+ "kind": "set",
56201
+ "resource": "@entity.currentActionDescription"
56202
+ },
56203
+ {
56204
+ "kind": "set",
56205
+ "resource": "@entity.currentActionIcon"
56206
+ },
56207
+ {
56208
+ "kind": "set",
56209
+ "resource": "@entity.currentActionLabel"
56210
+ },
56211
+ {
56212
+ "kind": "set",
56213
+ "resource": "@entity.currentPartyActor"
56214
+ },
56215
+ {
56216
+ "kind": "set",
56217
+ "resource": "@entity.currentPartyIcon"
56218
+ },
56219
+ {
56220
+ "kind": "set",
56221
+ "resource": "@entity.currentPartyId"
56222
+ },
56223
+ {
56224
+ "kind": "set",
56225
+ "resource": "@entity.currentPartyIndex"
56226
+ },
56227
+ {
56228
+ "kind": "set",
56229
+ "resource": "@entity.currentPartyTitle"
56230
+ },
56231
+ {
56232
+ "kind": "set",
56233
+ "resource": "@entity.currentStepLabel"
56234
+ },
56235
+ {
56236
+ "kind": "set",
56237
+ "resource": "@entity.disputeReason"
56238
+ },
56239
+ {
56240
+ "kind": "set",
56241
+ "resource": "@entity.errorMessage"
56242
+ },
56243
+ {
56244
+ "kind": "set",
56245
+ "resource": "@entity.parties"
56246
+ },
56247
+ {
56248
+ "kind": "set",
56249
+ "resource": "@entity.reason"
56250
+ },
56251
+ {
56252
+ "kind": "set",
56253
+ "resource": "@entity.totalParties"
56254
+ }
56255
+ ],
54541
56256
  "emits": [
54542
56257
  {
54543
56258
  "description": "Signals a party's acceptance or agreement within the flow.",
@@ -57283,6 +58998,22 @@ function stdNotificationCenterNotificationCenterOrbital(params = {}) {
57283
58998
  traits: [
57284
58999
  {
57285
59000
  "category": "lifecycle",
59001
+ "effectRow": [
59002
+ {
59003
+ "kind": "browser/push-subscribe"
59004
+ },
59005
+ {
59006
+ "kind": "notify"
59007
+ },
59008
+ {
59009
+ "kind": "persist",
59010
+ "resource": "PushSubscription"
59011
+ },
59012
+ {
59013
+ "kind": "set",
59014
+ "resource": "@entity.lastError"
59015
+ }
59016
+ ],
57286
59017
  "emits": [
57287
59018
  {
57288
59019
  "description": "browser/push-subscribe resolved; the subscription credentials arrive flat on the payload",
@@ -57513,6 +59244,15 @@ function stdNotificationCenterNotificationCenterOrbital(params = {}) {
57513
59244
  },
57514
59245
  {
57515
59246
  "category": "lifecycle",
59247
+ "effectRow": [
59248
+ {
59249
+ "kind": "notify"
59250
+ },
59251
+ {
59252
+ "kind": "persist",
59253
+ "resource": "NotificationPreference"
59254
+ }
59255
+ ],
57516
59256
  "emits": [
57517
59257
  {
57518
59258
  "description": "Preference row persisted",
@@ -57807,6 +59547,49 @@ function stdNotificationCenterNotificationCenterOrbital(params = {}) {
57807
59547
  "type": "number"
57808
59548
  }
57809
59549
  },
59550
+ "effectRow": [
59551
+ {
59552
+ "kind": "call-service",
59553
+ "resource": "email.send"
59554
+ },
59555
+ {
59556
+ "kind": "fetch",
59557
+ "resource": "NotificationRecord"
59558
+ },
59559
+ {
59560
+ "kind": "fetch",
59561
+ "resource": "NotificationRecord",
59562
+ "site": "tick"
59563
+ },
59564
+ {
59565
+ "kind": "persist",
59566
+ "resource": "NotificationRecord"
59567
+ },
59568
+ {
59569
+ "kind": "set",
59570
+ "resource": "@entity.drainedCount"
59571
+ },
59572
+ {
59573
+ "kind": "set",
59574
+ "resource": "@entity.headId"
59575
+ },
59576
+ {
59577
+ "kind": "set",
59578
+ "resource": "@entity.headMessage"
59579
+ },
59580
+ {
59581
+ "kind": "set",
59582
+ "resource": "@entity.headRecipient"
59583
+ },
59584
+ {
59585
+ "kind": "set",
59586
+ "resource": "@entity.lastError"
59587
+ },
59588
+ {
59589
+ "kind": "ticks",
59590
+ "site": "tick"
59591
+ }
59592
+ ],
57810
59593
  "emits": [
57811
59594
  {
57812
59595
  "description": "Undispatched digest/quiet-hours audit rows past minAgeHours, oldest batch first",
@@ -58926,6 +60709,103 @@ function stdNotifyOnEventNotifyOnEventOrbital(params = {}) {
58926
60709
  "type": "string"
58927
60710
  }
58928
60711
  },
60712
+ "effectRow": [
60713
+ {
60714
+ "kind": "call-service",
60715
+ "resource": "email.send"
60716
+ },
60717
+ {
60718
+ "kind": "call-service",
60719
+ "resource": "push.send"
60720
+ },
60721
+ {
60722
+ "kind": "call-service",
60723
+ "resource": "twilio.sendSMS"
60724
+ },
60725
+ {
60726
+ "kind": "call-service",
60727
+ "resource": "webhook.send"
60728
+ },
60729
+ {
60730
+ "kind": "emit",
60731
+ "resource": "NotificationDispatched"
60732
+ },
60733
+ {
60734
+ "kind": "fetch",
60735
+ "resource": "NotificationPreference"
60736
+ },
60737
+ {
60738
+ "kind": "fetch",
60739
+ "resource": "NotificationRecord"
60740
+ },
60741
+ {
60742
+ "kind": "fetch",
60743
+ "resource": "PushSubscription"
60744
+ },
60745
+ {
60746
+ "kind": "notify"
60747
+ },
60748
+ {
60749
+ "kind": "persist",
60750
+ "resource": "NotificationRecord"
60751
+ },
60752
+ {
60753
+ "kind": "set",
60754
+ "resource": "@entity.channel"
60755
+ },
60756
+ {
60757
+ "kind": "set",
60758
+ "resource": "@entity.dispatched"
60759
+ },
60760
+ {
60761
+ "kind": "set",
60762
+ "resource": "@entity.error"
60763
+ },
60764
+ {
60765
+ "kind": "set",
60766
+ "resource": "@entity.message"
60767
+ },
60768
+ {
60769
+ "kind": "set",
60770
+ "resource": "@entity.prefChannel"
60771
+ },
60772
+ {
60773
+ "kind": "set",
60774
+ "resource": "@entity.prefMode"
60775
+ },
60776
+ {
60777
+ "kind": "set",
60778
+ "resource": "@entity.prefQuietEnd"
60779
+ },
60780
+ {
60781
+ "kind": "set",
60782
+ "resource": "@entity.prefQuietStart"
60783
+ },
60784
+ {
60785
+ "kind": "set",
60786
+ "resource": "@entity.pushAuth"
60787
+ },
60788
+ {
60789
+ "kind": "set",
60790
+ "resource": "@entity.pushEndpoint"
60791
+ },
60792
+ {
60793
+ "kind": "set",
60794
+ "resource": "@entity.pushP256dh"
60795
+ },
60796
+ {
60797
+ "kind": "set",
60798
+ "resource": "@entity.recipient"
60799
+ },
60800
+ {
60801
+ "kind": "set",
60802
+ "resource": "@entity.recordedAt"
60803
+ },
60804
+ {
60805
+ "kind": "set",
60806
+ "resource": "@entity.severity"
60807
+ }
60808
+ ],
58929
60809
  "emits": [
58930
60810
  {
58931
60811
  "event": "NotificationDispatched",
@@ -61240,6 +63120,24 @@ function stdPaginationPagedItemOrbital(params = {}) {
61240
63120
  "type": "number"
61241
63121
  }
61242
63122
  },
63123
+ "effectRow": [
63124
+ {
63125
+ "kind": "fetch",
63126
+ "resource": "PagedItem"
63127
+ },
63128
+ {
63129
+ "kind": "render-ui",
63130
+ "resource": "main"
63131
+ },
63132
+ {
63133
+ "kind": "set",
63134
+ "resource": "@entity.currentPage"
63135
+ },
63136
+ {
63137
+ "kind": "set",
63138
+ "resource": "@entity.totalPages"
63139
+ }
63140
+ ],
61243
63141
  "emits": [
61244
63142
  {
61245
63143
  "description": "Indicates a change in the currently displayed page.",
@@ -62394,6 +64292,24 @@ function stdRateLimiterRateBucketOrbital(params = {}) {
62394
64292
  ]
62395
64293
  }
62396
64294
  },
64295
+ "effectRow": [
64296
+ {
64297
+ "kind": "render-ui",
64298
+ "resource": "main"
64299
+ },
64300
+ {
64301
+ "kind": "set",
64302
+ "resource": "@entity.count"
64303
+ },
64304
+ {
64305
+ "kind": "set",
64306
+ "resource": "@entity.limiterStatus"
64307
+ },
64308
+ {
64309
+ "kind": "set",
64310
+ "resource": "@entity.window"
64311
+ }
64312
+ ],
62397
64313
  "linkedEntity": "RateBucket",
62398
64314
  "listens": [
62399
64315
  {
@@ -63287,6 +65203,56 @@ function stdRatingReviewRatingReviewOrbital(params = {}) {
63287
65203
  "type": "string"
63288
65204
  }
63289
65205
  },
65206
+ "effectRow": [
65207
+ {
65208
+ "kind": "fetch",
65209
+ "resource": "ReviewView"
65210
+ },
65211
+ {
65212
+ "kind": "persist",
65213
+ "resource": "ReviewView"
65214
+ },
65215
+ {
65216
+ "kind": "render-ui",
65217
+ "resource": "main"
65218
+ },
65219
+ {
65220
+ "kind": "set",
65221
+ "resource": "@entity.averageRating"
65222
+ },
65223
+ {
65224
+ "kind": "set",
65225
+ "resource": "@entity.currentSort"
65226
+ },
65227
+ {
65228
+ "kind": "set",
65229
+ "resource": "@entity.draftComment"
65230
+ },
65231
+ {
65232
+ "kind": "set",
65233
+ "resource": "@entity.draftRating"
65234
+ },
65235
+ {
65236
+ "kind": "set",
65237
+ "resource": "@entity.errorMessage"
65238
+ },
65239
+ {
65240
+ "kind": "set",
65241
+ "resource": "@entity.reviews"
65242
+ },
65243
+ {
65244
+ "kind": "set",
65245
+ "resource": "@entity.reviewsSource"
65246
+ },
65247
+ {
65248
+ "kind": "set",
65249
+ "resource": "@entity.starDistribution"
65250
+ },
65251
+ {
65252
+ "kind": "set",
65253
+ "resource": "@entity.totalReviews"
65254
+ }
65255
+ ],
63290
65256
  "emits": [
63291
65257
  {
63292
65258
  "description": "Initiates the review composition flow.",
@@ -65417,6 +67383,28 @@ function stdRatingReviewRatingReviewOrbital(params = {}) {
65417
67383
  "type": "string"
65418
67384
  }
65419
67385
  },
67386
+ "effectRow": [
67387
+ {
67388
+ "kind": "persist",
67389
+ "resource": "ReviewView"
67390
+ },
67391
+ {
67392
+ "kind": "render-ui",
67393
+ "resource": "main"
67394
+ },
67395
+ {
67396
+ "kind": "set",
67397
+ "resource": "@entity.draftComment"
67398
+ },
67399
+ {
67400
+ "kind": "set",
67401
+ "resource": "@entity.draftRating"
67402
+ },
67403
+ {
67404
+ "kind": "set",
67405
+ "resource": "@entity.errorMessage"
67406
+ }
67407
+ ],
65420
67408
  "emits": [
65421
67409
  {
65422
67410
  "description": "Signals a review draft has been created or updated.",
@@ -66654,6 +68642,60 @@ function stdRecordDetailRecordItemOrbital(params = {}) {
66654
68642
  "type": "string"
66655
68643
  }
66656
68644
  },
68645
+ "effectRow": [
68646
+ {
68647
+ "kind": "emit",
68648
+ "resource": "CONTENT_COMMITTED"
68649
+ },
68650
+ {
68651
+ "kind": "emit",
68652
+ "resource": "CONTENT_SAVED"
68653
+ },
68654
+ {
68655
+ "kind": "fetch",
68656
+ "resource": "RecordItem"
68657
+ },
68658
+ {
68659
+ "kind": "render-ui",
68660
+ "resource": "main"
68661
+ },
68662
+ {
68663
+ "kind": "set",
68664
+ "resource": "@entity.content"
68665
+ },
68666
+ {
68667
+ "kind": "set",
68668
+ "resource": "@entity.coverUrl"
68669
+ },
68670
+ {
68671
+ "kind": "set",
68672
+ "resource": "@entity.description"
68673
+ },
68674
+ {
68675
+ "kind": "set",
68676
+ "resource": "@entity.iconName"
68677
+ },
68678
+ {
68679
+ "kind": "set",
68680
+ "resource": "@entity.id"
68681
+ },
68682
+ {
68683
+ "kind": "set",
68684
+ "resource": "@entity.loadedRow"
68685
+ },
68686
+ {
68687
+ "kind": "set",
68688
+ "resource": "@entity.name"
68689
+ },
68690
+ {
68691
+ "kind": "set",
68692
+ "resource": "@entity.openDraft"
68693
+ },
68694
+ {
68695
+ "kind": "set",
68696
+ "resource": "@entity.slug"
68697
+ }
68698
+ ],
66657
68699
  "emits": [
66658
68700
  {
66659
68701
  "description": "Signals that the record has been successfully loaded.",
@@ -69298,6 +71340,20 @@ function stdRecordDetailRecordItemOrbital(params = {}) {
69298
71340
  "type": "[MetaFieldSpec]"
69299
71341
  }
69300
71342
  },
71343
+ "effectRow": [
71344
+ {
71345
+ "kind": "emit",
71346
+ "resource": "META_SAVED"
71347
+ },
71348
+ {
71349
+ "kind": "render-ui",
71350
+ "resource": "drawer"
71351
+ },
71352
+ {
71353
+ "kind": "set",
71354
+ "resource": "@entity.loadedRow"
71355
+ }
71356
+ ],
69301
71357
  "emits": [
69302
71358
  {
69303
71359
  "description": "A property in the settings rail committed in place; patch carries the row id plus the one changed field, ready to hand straight to a persist update. Quiet contract: the host persists without refetching or repainting the open document.",
@@ -70124,6 +72180,64 @@ function stdRecurrenceRecurrenceOrbital(params = {}) {
70124
72180
  "type": "string"
70125
72181
  }
70126
72182
  },
72183
+ "effectRow": [
72184
+ {
72185
+ "kind": "fetch",
72186
+ "resource": "RecurrenceView"
72187
+ },
72188
+ {
72189
+ "kind": "persist",
72190
+ "resource": "RecurrenceView"
72191
+ },
72192
+ {
72193
+ "kind": "render-ui",
72194
+ "resource": "main"
72195
+ },
72196
+ {
72197
+ "kind": "set",
72198
+ "resource": "@entity.currentOccurrenceDate"
72199
+ },
72200
+ {
72201
+ "kind": "set",
72202
+ "resource": "@entity.currentOccurrenceId"
72203
+ },
72204
+ {
72205
+ "kind": "set",
72206
+ "resource": "@entity.currentOccurrenceLabel"
72207
+ },
72208
+ {
72209
+ "kind": "set",
72210
+ "resource": "@entity.endAfterCount"
72211
+ },
72212
+ {
72213
+ "kind": "set",
72214
+ "resource": "@entity.endDate"
72215
+ },
72216
+ {
72217
+ "kind": "set",
72218
+ "resource": "@entity.errorMessage"
72219
+ },
72220
+ {
72221
+ "kind": "set",
72222
+ "resource": "@entity.frequency"
72223
+ },
72224
+ {
72225
+ "kind": "set",
72226
+ "resource": "@entity.interval"
72227
+ },
72228
+ {
72229
+ "kind": "set",
72230
+ "resource": "@entity.occurrences"
72231
+ },
72232
+ {
72233
+ "kind": "set",
72234
+ "resource": "@entity.rescheduleDate"
72235
+ },
72236
+ {
72237
+ "kind": "set",
72238
+ "resource": "@entity.startDate"
72239
+ }
72240
+ ],
70127
72241
  "emits": [
70128
72242
  {
70129
72243
  "description": "Signals the rule definition is being modified.",
@@ -71408,6 +73522,20 @@ function stdRelatedRelatedItemOrbital(params = {}) {
71408
73522
  "type": "string"
71409
73523
  }
71410
73524
  },
73525
+ "effectRow": [
73526
+ {
73527
+ "kind": "fetch",
73528
+ "resource": "RelatedItem"
73529
+ },
73530
+ {
73531
+ "kind": "render-ui",
73532
+ "resource": "main"
73533
+ },
73534
+ {
73535
+ "kind": "set",
73536
+ "resource": "@entity.id"
73537
+ }
73538
+ ],
71411
73539
  "emits": [
71412
73540
  {
71413
73541
  "description": "Signals that related items have been successfully loaded.",
@@ -72187,6 +74315,36 @@ function stdReminderSchedulerReminderSchedulerOrbital(params = {}) {
72187
74315
  "type": "string"
72188
74316
  }
72189
74317
  },
74318
+ "effectRow": [
74319
+ {
74320
+ "kind": "emit",
74321
+ "resource": "ReminderDue"
74322
+ },
74323
+ {
74324
+ "kind": "fetch",
74325
+ "resolved": false,
74326
+ "resource": "@config.targetEntity"
74327
+ },
74328
+ {
74329
+ "kind": "fetch",
74330
+ "resolved": false,
74331
+ "resource": "@config.targetEntity",
74332
+ "site": "tick"
74333
+ },
74334
+ {
74335
+ "kind": "persist",
74336
+ "resolved": false,
74337
+ "resource": "@config.targetEntity"
74338
+ },
74339
+ {
74340
+ "kind": "set",
74341
+ "resource": "@entity.headId"
74342
+ },
74343
+ {
74344
+ "kind": "ticks",
74345
+ "site": "tick"
74346
+ }
74347
+ ],
72190
74348
  "emits": [
72191
74349
  {
72192
74350
  "event": "ReminderDue",
@@ -72856,6 +75014,28 @@ function stdRowAccessControlRowAccessControlOrbital(params = {}) {
72856
75014
  "type": "[string]"
72857
75015
  }
72858
75016
  },
75017
+ "effectRow": [
75018
+ {
75019
+ "kind": "emit",
75020
+ "resource": "RowsFiltered"
75021
+ },
75022
+ {
75023
+ "kind": "set",
75024
+ "resource": "@entity.accessDenied"
75025
+ },
75026
+ {
75027
+ "kind": "set",
75028
+ "resource": "@entity.filteredData"
75029
+ },
75030
+ {
75031
+ "kind": "set",
75032
+ "resource": "@entity.inputCount"
75033
+ },
75034
+ {
75035
+ "kind": "set",
75036
+ "resource": "@entity.outputCount"
75037
+ }
75038
+ ],
72859
75039
  "emits": [
72860
75040
  {
72861
75041
  "event": "RowsFiltered",
@@ -73264,6 +75444,36 @@ function stdSavedSearchSavedSearchOrbital(params = {}) {
73264
75444
  "type": "string"
73265
75445
  }
73266
75446
  },
75447
+ "effectRow": [
75448
+ {
75449
+ "kind": "fetch",
75450
+ "resource": "SavedSearch"
75451
+ },
75452
+ {
75453
+ "kind": "persist",
75454
+ "resource": "SavedSearch"
75455
+ },
75456
+ {
75457
+ "kind": "render-ui",
75458
+ "resource": "main"
75459
+ },
75460
+ {
75461
+ "kind": "set",
75462
+ "resource": "@entity.alertEnabled"
75463
+ },
75464
+ {
75465
+ "kind": "set",
75466
+ "resource": "@entity.alertFrequency"
75467
+ },
75468
+ {
75469
+ "kind": "set",
75470
+ "resource": "@entity.id"
75471
+ },
75472
+ {
75473
+ "kind": "set",
75474
+ "resource": "@entity.name"
75475
+ }
75476
+ ],
73267
75477
  "emits": [
73268
75478
  {
73269
75479
  "description": "Indicates the alert subscription status has been changed.",
@@ -74347,6 +76557,16 @@ function stdScatterScatterItemOrbital(params = {}) {
74347
76557
  "type": "string"
74348
76558
  }
74349
76559
  },
76560
+ "effectRow": [
76561
+ {
76562
+ "kind": "render-ui",
76563
+ "resource": "main"
76564
+ },
76565
+ {
76566
+ "kind": "set",
76567
+ "resource": "@entity.points"
76568
+ }
76569
+ ],
74350
76570
  "linkedEntity": "ScatterItem",
74351
76571
  "name": "ScatterItemPlot",
74352
76572
  "scope": "instance",
@@ -74722,6 +76942,16 @@ function stdSearchSearchResultOrbital(params = {}) {
74722
76942
  "type": "string"
74723
76943
  }
74724
76944
  },
76945
+ "effectRow": [
76946
+ {
76947
+ "kind": "render-ui",
76948
+ "resource": "main"
76949
+ },
76950
+ {
76951
+ "kind": "set",
76952
+ "resource": "@entity.searchTerm"
76953
+ }
76954
+ ],
74725
76955
  "emits": [
74726
76956
  {
74727
76957
  "description": "Initiates a search operation based on the input term.",
@@ -75075,6 +77305,16 @@ function stdSelectionSelectableItemOrbital(params = {}) {
75075
77305
  ]
75076
77306
  }
75077
77307
  },
77308
+ "effectRow": [
77309
+ {
77310
+ "kind": "fetch",
77311
+ "resource": "SelectableItem"
77312
+ },
77313
+ {
77314
+ "kind": "render-ui",
77315
+ "resource": "main"
77316
+ }
77317
+ ],
75078
77318
  "emits": [
75079
77319
  {
75080
77320
  "description": "Indicates a selectable item has been successfully loaded.",
@@ -76158,6 +78398,24 @@ function stdSignatureCaptureSignatureCaptureOrbital(params = {}) {
76158
78398
  "type": "string"
76159
78399
  }
76160
78400
  },
78401
+ "effectRow": [
78402
+ {
78403
+ "kind": "fetch",
78404
+ "resource": "Signature"
78405
+ },
78406
+ {
78407
+ "kind": "persist",
78408
+ "resource": "Signature"
78409
+ },
78410
+ {
78411
+ "kind": "render-ui",
78412
+ "resource": "main"
78413
+ },
78414
+ {
78415
+ "kind": "set",
78416
+ "resource": "@entity.signatureDataUrl"
78417
+ }
78418
+ ],
76161
78419
  "emits": [
76162
78420
  {
76163
78421
  "description": "Indicates a change in the signature drawing.",
@@ -77648,6 +79906,16 @@ function stdStatsStatsItemOrbital(params = {}) {
77648
79906
  "type": "pattern"
77649
79907
  }
77650
79908
  },
79909
+ "effectRow": [
79910
+ {
79911
+ "kind": "render-ui",
79912
+ "resource": "main"
79913
+ },
79914
+ {
79915
+ "kind": "set",
79916
+ "resource": "@entity.cards"
79917
+ }
79918
+ ],
77651
79919
  "entityContract": {
77652
79920
  "provides": [
77653
79921
  "cards"
@@ -78460,6 +80728,17 @@ function stdStatusLifecycleStatusLifecycleOrbital(params = {}) {
78460
80728
  "type": "[TransitionSpec]"
78461
80729
  }
78462
80730
  },
80731
+ "effectRow": [
80732
+ {
80733
+ "kind": "emit",
80734
+ "resource": "StatusChanged"
80735
+ },
80736
+ {
80737
+ "kind": "persist",
80738
+ "resolved": false,
80739
+ "resource": "@config.targetEntity"
80740
+ }
80741
+ ],
78463
80742
  "emits": [
78464
80743
  {
78465
80744
  "event": "StatusChanged",
@@ -79188,6 +81467,76 @@ function stdStepFlowStepFlowOrbital(params = {}) {
79188
81467
  "type": "string"
79189
81468
  }
79190
81469
  },
81470
+ "effectRow": [
81471
+ {
81472
+ "kind": "fetch",
81473
+ "resource": "StepFlowView"
81474
+ },
81475
+ {
81476
+ "kind": "render-ui",
81477
+ "resource": "main"
81478
+ },
81479
+ {
81480
+ "kind": "set",
81481
+ "resource": "@entity.currentStepDescription"
81482
+ },
81483
+ {
81484
+ "kind": "set",
81485
+ "resource": "@entity.currentStepIcon"
81486
+ },
81487
+ {
81488
+ "kind": "set",
81489
+ "resource": "@entity.currentStepIndex"
81490
+ },
81491
+ {
81492
+ "kind": "set",
81493
+ "resource": "@entity.currentStepLabel"
81494
+ },
81495
+ {
81496
+ "kind": "set",
81497
+ "resource": "@entity.errorMessage"
81498
+ },
81499
+ {
81500
+ "kind": "set",
81501
+ "resource": "@entity.finalStatus"
81502
+ },
81503
+ {
81504
+ "kind": "set",
81505
+ "resource": "@entity.id"
81506
+ },
81507
+ {
81508
+ "kind": "set",
81509
+ "resource": "@entity.isFirstStep"
81510
+ },
81511
+ {
81512
+ "kind": "set",
81513
+ "resource": "@entity.isLastStep"
81514
+ },
81515
+ {
81516
+ "kind": "set",
81517
+ "resource": "@entity.primaryActionIcon"
81518
+ },
81519
+ {
81520
+ "kind": "set",
81521
+ "resource": "@entity.primaryActionLabel"
81522
+ },
81523
+ {
81524
+ "kind": "set",
81525
+ "resource": "@entity.primaryActionVariant"
81526
+ },
81527
+ {
81528
+ "kind": "set",
81529
+ "resource": "@entity.rejectionReason"
81530
+ },
81531
+ {
81532
+ "kind": "set",
81533
+ "resource": "@entity.totalSteps"
81534
+ },
81535
+ {
81536
+ "kind": "set",
81537
+ "resource": "@entity.wizardSteps"
81538
+ }
81539
+ ],
79191
81540
  "emits": [
79192
81541
  {
79193
81542
  "description": "Signals progression to the next step in the sequence.",
@@ -81023,6 +83372,20 @@ function stdTabsTabsItemOrbital(params = {}) {
81023
83372
  ]
81024
83373
  }
81025
83374
  },
83375
+ "effectRow": [
83376
+ {
83377
+ "kind": "render-ui",
83378
+ "resource": "main"
83379
+ },
83380
+ {
83381
+ "kind": "set",
83382
+ "resource": "@entity.activeTab"
83383
+ },
83384
+ {
83385
+ "kind": "set",
83386
+ "resource": "@entity.items"
83387
+ }
83388
+ ],
81026
83389
  "emits": [
81027
83390
  {
81028
83391
  "description": "Signals a tab selection has occurred.",
@@ -81390,6 +83753,40 @@ function stdTagTaxonomyTagTaxonomyOrbital(params = {}) {
81390
83753
  "type": "string"
81391
83754
  }
81392
83755
  },
83756
+ "effectRow": [
83757
+ {
83758
+ "kind": "emit",
83759
+ "resource": "LEVEL_RELOAD"
83760
+ },
83761
+ {
83762
+ "kind": "emit",
83763
+ "resource": "TagSelected"
83764
+ },
83765
+ {
83766
+ "kind": "fetch",
83767
+ "resource": "Tag"
83768
+ },
83769
+ {
83770
+ "kind": "persist",
83771
+ "resource": "Tag"
83772
+ },
83773
+ {
83774
+ "kind": "render-ui",
83775
+ "resource": "main"
83776
+ },
83777
+ {
83778
+ "kind": "render-ui",
83779
+ "resource": "modal"
83780
+ },
83781
+ {
83782
+ "kind": "set",
83783
+ "resource": "@entity.id"
83784
+ },
83785
+ {
83786
+ "kind": "set",
83787
+ "resource": "@entity.parentId"
83788
+ }
83789
+ ],
81393
83790
  "emits": [
81394
83791
  {
81395
83792
  "description": "Signals a tag has been chosen for navigation.",
@@ -83253,6 +85650,36 @@ function stdThreadThreadPostOrbital(params = {}) {
83253
85650
  "type": "string"
83254
85651
  }
83255
85652
  },
85653
+ "effectRow": [
85654
+ {
85655
+ "kind": "fetch",
85656
+ "resource": "ThreadPost"
85657
+ },
85658
+ {
85659
+ "kind": "persist",
85660
+ "resource": "ThreadPost"
85661
+ },
85662
+ {
85663
+ "kind": "render-ui",
85664
+ "resource": "main"
85665
+ },
85666
+ {
85667
+ "kind": "set",
85668
+ "resource": "@entity.content"
85669
+ },
85670
+ {
85671
+ "kind": "set",
85672
+ "resource": "@entity.focusedRow"
85673
+ },
85674
+ {
85675
+ "kind": "set",
85676
+ "resource": "@entity.parentId"
85677
+ },
85678
+ {
85679
+ "kind": "set",
85680
+ "resource": "@entity.threadRootId"
85681
+ }
85682
+ ],
83256
85683
  "emits": [
83257
85684
  {
83258
85685
  "description": "Indicates a post or reply has been chosen for interaction.",
@@ -84728,6 +87155,36 @@ function stdTokenizerMlTokenizerOrbital(params = {}) {
84728
87155
  "type": "Map<string,int>"
84729
87156
  }
84730
87157
  },
87158
+ "effectRow": [
87159
+ {
87160
+ "kind": "emit",
87161
+ "resource": "TOKENIZED"
87162
+ },
87163
+ {
87164
+ "kind": "set",
87165
+ "resource": "@entity.request"
87166
+ },
87167
+ {
87168
+ "kind": "set",
87169
+ "resource": "@entity.status"
87170
+ },
87171
+ {
87172
+ "kind": "set",
87173
+ "resource": "@entity.text"
87174
+ },
87175
+ {
87176
+ "kind": "set",
87177
+ "resource": "@entity.tokenCount"
87178
+ },
87179
+ {
87180
+ "kind": "set",
87181
+ "resource": "@entity.tokenIds"
87182
+ },
87183
+ {
87184
+ "kind": "set",
87185
+ "resource": "@entity.tokens"
87186
+ }
87187
+ ],
84731
87188
  "emits": [
84732
87189
  {
84733
87190
  "description": "Text tokenized into a normalized, truncated token sequence with vocabulary ids",
@@ -85361,6 +87818,24 @@ function stdTreeTreeNodeOrbital(params = {}) {
85361
87818
  "type": "string"
85362
87819
  }
85363
87820
  },
87821
+ "effectRow": [
87822
+ {
87823
+ "kind": "emit",
87824
+ "resource": "CHILD_REQUESTED"
87825
+ },
87826
+ {
87827
+ "kind": "fetch",
87828
+ "resource": "TreeNode"
87829
+ },
87830
+ {
87831
+ "kind": "render-ui",
87832
+ "resource": "main"
87833
+ },
87834
+ {
87835
+ "kind": "set",
87836
+ "resource": "@entity.id"
87837
+ }
87838
+ ],
85364
87839
  "emits": [
85365
87840
  {
85366
87841
  "description": "Signals a tree node has been selected for external handoff.",
@@ -86732,6 +89207,60 @@ function stdVersionHistoryRevisionOrbital(params = {}) {
86732
89207
  "type": "string"
86733
89208
  }
86734
89209
  },
89210
+ "effectRow": [
89211
+ {
89212
+ "kind": "fetch",
89213
+ "resource": "Revision"
89214
+ },
89215
+ {
89216
+ "kind": "persist",
89217
+ "resource": "Revision"
89218
+ },
89219
+ {
89220
+ "kind": "render-ui",
89221
+ "resource": "main"
89222
+ },
89223
+ {
89224
+ "kind": "set",
89225
+ "resource": "@entity.authorId"
89226
+ },
89227
+ {
89228
+ "kind": "set",
89229
+ "resource": "@entity.authorName"
89230
+ },
89231
+ {
89232
+ "kind": "set",
89233
+ "resource": "@entity.content"
89234
+ },
89235
+ {
89236
+ "kind": "set",
89237
+ "resource": "@entity.createdAt"
89238
+ },
89239
+ {
89240
+ "kind": "set",
89241
+ "resource": "@entity.documentId"
89242
+ },
89243
+ {
89244
+ "kind": "set",
89245
+ "resource": "@entity.documentType"
89246
+ },
89247
+ {
89248
+ "kind": "set",
89249
+ "resource": "@entity.id"
89250
+ },
89251
+ {
89252
+ "kind": "set",
89253
+ "resource": "@entity.scopeKey"
89254
+ },
89255
+ {
89256
+ "kind": "set",
89257
+ "resource": "@entity.summary"
89258
+ },
89259
+ {
89260
+ "kind": "set",
89261
+ "resource": "@entity.versionNumber"
89262
+ }
89263
+ ],
86735
89264
  "emits": [
86736
89265
  {
86737
89266
  "description": "Signals a revision has been selected for viewing.",
@@ -88550,6 +91079,28 @@ function stdVoteVoteOrbital(params = {}) {
88550
91079
  "type": "boolean"
88551
91080
  }
88552
91081
  },
91082
+ "effectRow": [
91083
+ {
91084
+ "kind": "fetch",
91085
+ "resource": "Vote"
91086
+ },
91087
+ {
91088
+ "kind": "persist",
91089
+ "resource": "Vote"
91090
+ },
91091
+ {
91092
+ "kind": "render-ui",
91093
+ "resource": "main"
91094
+ },
91095
+ {
91096
+ "kind": "set",
91097
+ "resource": "@entity.direction"
91098
+ },
91099
+ {
91100
+ "kind": "set",
91101
+ "resource": "@entity.targetId"
91102
+ }
91103
+ ],
88553
91104
  "emits": [
88554
91105
  {
88555
91106
  "description": "Signals a vote has been successfully recorded.",
@@ -89326,6 +91877,36 @@ function stdWeightValidatorMlWeightValidatorOrbital(params = {}) {
89326
91877
  "type": "float"
89327
91878
  }
89328
91879
  },
91880
+ "effectRow": [
91881
+ {
91882
+ "kind": "emit",
91883
+ "resource": "WEIGHTS_ACCEPTED"
91884
+ },
91885
+ {
91886
+ "kind": "emit",
91887
+ "resource": "WEIGHTS_REJECTED"
91888
+ },
91889
+ {
91890
+ "kind": "set",
91891
+ "resource": "@entity.baseline"
91892
+ },
91893
+ {
91894
+ "kind": "set",
91895
+ "resource": "@entity.status"
91896
+ },
91897
+ {
91898
+ "kind": "set",
91899
+ "resource": "@entity.valid"
91900
+ },
91901
+ {
91902
+ "kind": "set",
91903
+ "resource": "@entity.violations"
91904
+ },
91905
+ {
91906
+ "kind": "set",
91907
+ "resource": "@entity.weights"
91908
+ }
91909
+ ],
89329
91910
  "emits": [
89330
91911
  {
89331
91912
  "description": "All constraint checks passed \u2014 magnitude bounds, forbidden regions, and regression are all clear",
@@ -90149,6 +92730,76 @@ function stdWizardWizardOrbital(params = {}) {
90149
92730
  "type": "string"
90150
92731
  }
90151
92732
  },
92733
+ "effectRow": [
92734
+ {
92735
+ "kind": "fetch",
92736
+ "resource": "WizardView"
92737
+ },
92738
+ {
92739
+ "kind": "persist",
92740
+ "resource": "WizardView"
92741
+ },
92742
+ {
92743
+ "kind": "render-ui",
92744
+ "resource": "main"
92745
+ },
92746
+ {
92747
+ "kind": "set",
92748
+ "resource": "@entity.cancelReason"
92749
+ },
92750
+ {
92751
+ "kind": "set",
92752
+ "resource": "@entity.completionMessage"
92753
+ },
92754
+ {
92755
+ "kind": "set",
92756
+ "resource": "@entity.currentFields"
92757
+ },
92758
+ {
92759
+ "kind": "set",
92760
+ "resource": "@entity.currentStepDescription"
92761
+ },
92762
+ {
92763
+ "kind": "set",
92764
+ "resource": "@entity.currentStepIcon"
92765
+ },
92766
+ {
92767
+ "kind": "set",
92768
+ "resource": "@entity.currentStepIndex"
92769
+ },
92770
+ {
92771
+ "kind": "set",
92772
+ "resource": "@entity.currentStepLabel"
92773
+ },
92774
+ {
92775
+ "kind": "set",
92776
+ "resource": "@entity.errorMessage"
92777
+ },
92778
+ {
92779
+ "kind": "set",
92780
+ "resource": "@entity.isFirstStep"
92781
+ },
92782
+ {
92783
+ "kind": "set",
92784
+ "resource": "@entity.isLastStep"
92785
+ },
92786
+ {
92787
+ "kind": "set",
92788
+ "resource": "@entity.primaryActionIcon"
92789
+ },
92790
+ {
92791
+ "kind": "set",
92792
+ "resource": "@entity.primaryActionLabel"
92793
+ },
92794
+ {
92795
+ "kind": "set",
92796
+ "resource": "@entity.totalSteps"
92797
+ },
92798
+ {
92799
+ "kind": "set",
92800
+ "resource": "@entity.wizardSteps"
92801
+ }
92802
+ ],
90152
92803
  "emits": [
90153
92804
  {
90154
92805
  "description": "Signals progression to the next step in the wizard.",
@@ -96531,6 +99182,34 @@ function stdUiTimerDisplayTimerDisplayOrbital(params = {}) {
96531
99182
  ]
96532
99183
  }
96533
99184
  },
99185
+ "effectRow": [
99186
+ {
99187
+ "kind": "render-ui",
99188
+ "resource": "main"
99189
+ },
99190
+ {
99191
+ "kind": "render-ui",
99192
+ "resource": "main",
99193
+ "site": "tick"
99194
+ },
99195
+ {
99196
+ "kind": "set",
99197
+ "resource": "@entity.running"
99198
+ },
99199
+ {
99200
+ "kind": "set",
99201
+ "resource": "@entity.seconds"
99202
+ },
99203
+ {
99204
+ "kind": "set",
99205
+ "resource": "@entity.seconds",
99206
+ "site": "tick"
99207
+ },
99208
+ {
99209
+ "kind": "ticks",
99210
+ "site": "tick"
99211
+ }
99212
+ ],
96534
99213
  "entityContract": {
96535
99214
  "provides": [
96536
99215
  "running",
@@ -101582,6 +104261,45 @@ function stdAgentBuilderAgentBuilderOrbital(params = {}) {
101582
104261
  traits: [
101583
104262
  {
101584
104263
  "category": "lifecycle",
104264
+ "effectRow": [
104265
+ {
104266
+ "kind": "behavior/instantiate"
104267
+ },
104268
+ {
104269
+ "kind": "emit",
104270
+ "resource": "BUILD_COMPLETE"
104271
+ },
104272
+ {
104273
+ "kind": "llm/generate"
104274
+ },
104275
+ {
104276
+ "kind": "set",
104277
+ "resource": "@entity.fixPrompt"
104278
+ },
104279
+ {
104280
+ "kind": "set",
104281
+ "resource": "@entity.orbitalName"
104282
+ },
104283
+ {
104284
+ "kind": "set",
104285
+ "resource": "@entity.plan"
104286
+ },
104287
+ {
104288
+ "kind": "set",
104289
+ "resource": "@entity.request"
104290
+ },
104291
+ {
104292
+ "kind": "set",
104293
+ "resource": "@entity.status"
104294
+ },
104295
+ {
104296
+ "kind": "set",
104297
+ "resource": "@entity.validationResult"
104298
+ },
104299
+ {
104300
+ "kind": "validate/validate"
104301
+ }
104302
+ ],
101585
104303
  "emits": [
101586
104304
  {
101587
104305
  "event": "BUILD_COMPLETE",
@@ -101873,6 +104591,12 @@ function stdAgentBuilderAgentBuilderOrbital(params = {}) {
101873
104591
  },
101874
104592
  {
101875
104593
  "category": "lifecycle",
104594
+ "effectRow": [
104595
+ {
104596
+ "kind": "set",
104597
+ "resource": "@entity.status"
104598
+ }
104599
+ ],
101876
104600
  "linkedEntity": "BuilderProcess",
101877
104601
  "listens": [
101878
104602
  {
@@ -102141,6 +104865,60 @@ function stdAgentRabitCoordinatorOrbital(params = {}) {
102141
104865
  traits: [
102142
104866
  {
102143
104867
  "category": "lifecycle",
104868
+ "effectRow": [
104869
+ {
104870
+ "kind": "compose/compose-all"
104871
+ },
104872
+ {
104873
+ "kind": "emit",
104874
+ "resource": "DISPATCHED"
104875
+ },
104876
+ {
104877
+ "kind": "emit",
104878
+ "resource": "RABIT_DONE"
104879
+ },
104880
+ {
104881
+ "kind": "llm/generate"
104882
+ },
104883
+ {
104884
+ "kind": "session/write-spec"
104885
+ },
104886
+ {
104887
+ "kind": "set",
104888
+ "resource": "@entity.completedCount"
104889
+ },
104890
+ {
104891
+ "kind": "set",
104892
+ "resource": "@entity.composedSchema"
104893
+ },
104894
+ {
104895
+ "kind": "set",
104896
+ "resource": "@entity.failedCount"
104897
+ },
104898
+ {
104899
+ "kind": "set",
104900
+ "resource": "@entity.phase"
104901
+ },
104902
+ {
104903
+ "kind": "set",
104904
+ "resource": "@entity.plan"
104905
+ },
104906
+ {
104907
+ "kind": "set",
104908
+ "resource": "@entity.prompt"
104909
+ },
104910
+ {
104911
+ "kind": "set",
104912
+ "resource": "@entity.totalOrbitals"
104913
+ },
104914
+ {
104915
+ "kind": "set",
104916
+ "resource": "@entity.validationErrors"
104917
+ },
104918
+ {
104919
+ "kind": "validate/validate"
104920
+ }
104921
+ ],
102144
104922
  "emits": [
102145
104923
  {
102146
104924
  "event": "PLANNED",
@@ -102573,6 +105351,24 @@ function stdAgentRabitCoordinatorOrbital(params = {}) {
102573
105351
  },
102574
105352
  {
102575
105353
  "category": "lifecycle",
105354
+ "effectRow": [
105355
+ {
105356
+ "kind": "emit",
105357
+ "resource": "ALL_DONE"
105358
+ },
105359
+ {
105360
+ "kind": "set",
105361
+ "resource": "@entity.completedCount"
105362
+ },
105363
+ {
105364
+ "kind": "set",
105365
+ "resource": "@entity.failedCount"
105366
+ },
105367
+ {
105368
+ "kind": "set",
105369
+ "resource": "@entity.totalOrbitals"
105370
+ }
105371
+ ],
102576
105372
  "emits": [
102577
105373
  {
102578
105374
  "event": "ALL_DONE"
@@ -102781,6 +105577,12 @@ function stdAgentRabitCoordinatorOrbital(params = {}) {
102781
105577
  },
102782
105578
  {
102783
105579
  "category": "lifecycle",
105580
+ "effectRow": [
105581
+ {
105582
+ "kind": "set",
105583
+ "resource": "@entity.phase"
105584
+ }
105585
+ ],
102784
105586
  "linkedEntity": "Coordinator",
102785
105587
  "listens": [
102786
105588
  {
@@ -103029,6 +105831,65 @@ function stdAgentRabitOrbitalProcessOrbital(params = {}) {
103029
105831
  traits: [
103030
105832
  {
103031
105833
  "category": "lifecycle",
105834
+ "effectRow": [
105835
+ {
105836
+ "kind": "behavior/instantiate"
105837
+ },
105838
+ {
105839
+ "kind": "emit",
105840
+ "resource": "BUILD_STEP"
105841
+ },
105842
+ {
105843
+ "kind": "emit",
105844
+ "resource": "ORBITAL_COMPLETE"
105845
+ },
105846
+ {
105847
+ "kind": "emit",
105848
+ "resource": "PROCESS_DONE"
105849
+ },
105850
+ {
105851
+ "kind": "emit",
105852
+ "resource": "PROCESS_RETRY"
105853
+ },
105854
+ {
105855
+ "kind": "emit",
105856
+ "resource": "REBUILD"
105857
+ },
105858
+ {
105859
+ "kind": "llm/generate"
105860
+ },
105861
+ {
105862
+ "kind": "set",
105863
+ "resource": "@entity.attempts"
105864
+ },
105865
+ {
105866
+ "kind": "set",
105867
+ "resource": "@entity.fixPrompt"
105868
+ },
105869
+ {
105870
+ "kind": "set",
105871
+ "resource": "@entity.maxAttempts"
105872
+ },
105873
+ {
105874
+ "kind": "set",
105875
+ "resource": "@entity.method"
105876
+ },
105877
+ {
105878
+ "kind": "set",
105879
+ "resource": "@entity.orbitalName"
105880
+ },
105881
+ {
105882
+ "kind": "set",
105883
+ "resource": "@entity.spec"
105884
+ },
105885
+ {
105886
+ "kind": "set",
105887
+ "resource": "@entity.status"
105888
+ },
105889
+ {
105890
+ "kind": "validate/validate"
105891
+ }
105892
+ ],
103032
105893
  "emits": [
103033
105894
  {
103034
105895
  "event": "BUILD_STEP",
@@ -103489,6 +106350,16 @@ function stdAgentRabitOrbitalProcessOrbital(params = {}) {
103489
106350
  },
103490
106351
  {
103491
106352
  "category": "lifecycle",
106353
+ "effectRow": [
106354
+ {
106355
+ "kind": "set",
106356
+ "resource": "@entity.method"
106357
+ },
106358
+ {
106359
+ "kind": "set",
106360
+ "resource": "@entity.orbitalName"
106361
+ }
106362
+ ],
103492
106363
  "linkedEntity": "OrbitalProcess",
103493
106364
  "listens": [
103494
106365
  {
@@ -105188,6 +108059,54 @@ function stdArcadeBoard3dArcadeBoard3DFrameOrbital(params = {}) {
105188
108059
  "type": "number"
105189
108060
  }
105190
108061
  },
108062
+ "effectRow": [
108063
+ {
108064
+ "kind": "emit",
108065
+ "resource": "MOVE"
108066
+ },
108067
+ {
108068
+ "kind": "emit",
108069
+ "resource": "PLAY_MACHINE"
108070
+ },
108071
+ {
108072
+ "kind": "emit",
108073
+ "resource": "RESTART"
108074
+ },
108075
+ {
108076
+ "kind": "emit",
108077
+ "resource": "WANDER",
108078
+ "site": "tick"
108079
+ },
108080
+ {
108081
+ "kind": "render-ui",
108082
+ "resource": "main"
108083
+ },
108084
+ {
108085
+ "kind": "render-ui",
108086
+ "resource": "main",
108087
+ "site": "tick"
108088
+ },
108089
+ {
108090
+ "kind": "set",
108091
+ "resource": "@entity.features"
108092
+ },
108093
+ {
108094
+ "kind": "set",
108095
+ "resource": "@entity.phase"
108096
+ },
108097
+ {
108098
+ "kind": "set",
108099
+ "resource": "@entity.selectedUnitId"
108100
+ },
108101
+ {
108102
+ "kind": "set",
108103
+ "resource": "@entity.validMoves"
108104
+ },
108105
+ {
108106
+ "kind": "ticks",
108107
+ "site": "tick"
108108
+ }
108109
+ ],
105191
108110
  "emits": [
105192
108111
  {
105193
108112
  "description": "Hero move intent applied by the hero-nav authority",
@@ -108687,6 +111606,72 @@ function stdCrewBoard2dCrewBoard2DOrbital(params = {}) {
108687
111606
  "type": "boolean"
108688
111607
  }
108689
111608
  },
111609
+ "effectRow": [
111610
+ {
111611
+ "kind": "emit",
111612
+ "resource": "MOVE"
111613
+ },
111614
+ {
111615
+ "kind": "render-ui",
111616
+ "resource": "main"
111617
+ },
111618
+ {
111619
+ "kind": "render-ui",
111620
+ "resource": "main",
111621
+ "site": "tick"
111622
+ },
111623
+ {
111624
+ "kind": "set",
111625
+ "resource": "@entity.animState"
111626
+ },
111627
+ {
111628
+ "kind": "set",
111629
+ "resource": "@entity.animState",
111630
+ "site": "tick"
111631
+ },
111632
+ {
111633
+ "kind": "set",
111634
+ "resource": "@entity.animTicksLeft"
111635
+ },
111636
+ {
111637
+ "kind": "set",
111638
+ "resource": "@entity.animTicksLeft",
111639
+ "site": "tick"
111640
+ },
111641
+ {
111642
+ "kind": "set",
111643
+ "resource": "@entity.animUnitId"
111644
+ },
111645
+ {
111646
+ "kind": "set",
111647
+ "resource": "@entity.animUnitId",
111648
+ "site": "tick"
111649
+ },
111650
+ {
111651
+ "kind": "set",
111652
+ "resource": "@entity.crewCount"
111653
+ },
111654
+ {
111655
+ "kind": "set",
111656
+ "resource": "@entity.oxygen"
111657
+ },
111658
+ {
111659
+ "kind": "set",
111660
+ "resource": "@entity.phase"
111661
+ },
111662
+ {
111663
+ "kind": "set",
111664
+ "resource": "@entity.selectedUnitId"
111665
+ },
111666
+ {
111667
+ "kind": "set",
111668
+ "resource": "@entity.validMoves"
111669
+ },
111670
+ {
111671
+ "kind": "ticks",
111672
+ "site": "tick"
111673
+ }
111674
+ ],
108690
111675
  "emits": [
108691
111676
  {
108692
111677
  "description": "Crew move intent applied by the hero-nav authority",
@@ -113610,6 +116595,38 @@ function stdDungeonBoard2dDungeonBoard2DOrbital(params = {}) {
113610
116595
  "type": "number"
113611
116596
  }
113612
116597
  },
116598
+ "effectRow": [
116599
+ {
116600
+ "kind": "emit",
116601
+ "resource": "ATTACK"
116602
+ },
116603
+ {
116604
+ "kind": "emit",
116605
+ "resource": "MONSTER_TICK",
116606
+ "site": "tick"
116607
+ },
116608
+ {
116609
+ "kind": "emit",
116610
+ "resource": "MOVE"
116611
+ },
116612
+ {
116613
+ "kind": "emit",
116614
+ "resource": "RESTART"
116615
+ },
116616
+ {
116617
+ "kind": "render-ui",
116618
+ "resource": "main"
116619
+ },
116620
+ {
116621
+ "kind": "render-ui",
116622
+ "resource": "main",
116623
+ "site": "tick"
116624
+ },
116625
+ {
116626
+ "kind": "ticks",
116627
+ "site": "tick"
116628
+ }
116629
+ ],
113613
116630
  "emits": [
113614
116631
  {
113615
116632
  "description": "Hero move intent applied by the hero-nav authority",
@@ -116271,6 +119288,16 @@ function stdEscalatingDecisionEscalatingDecisionOrbital(params = {}) {
116271
119288
  traits: [
116272
119289
  {
116273
119290
  "category": "lifecycle",
119291
+ "effectRow": [
119292
+ {
119293
+ "kind": "emit",
119294
+ "resource": "RUN_EXACT"
119295
+ },
119296
+ {
119297
+ "kind": "set",
119298
+ "resource": "@entity.status"
119299
+ }
119300
+ ],
116274
119301
  "emits": [
116275
119302
  {
116276
119303
  "description": "Starts the ladder at the exact-check rung (R0). request is the whole DECIDE payload, carried down the chain so each rung can project its own inputs.",
@@ -116587,6 +119614,36 @@ function stdEscalatingDecisionEscalatingDecisionOrbital(params = {}) {
116587
119614
  }),
116588
119615
  {
116589
119616
  "category": "lifecycle",
119617
+ "effectRow": [
119618
+ {
119619
+ "kind": "emit",
119620
+ "resource": "DECIDED"
119621
+ },
119622
+ {
119623
+ "kind": "emit",
119624
+ "resource": "DECISION_FAILED"
119625
+ },
119626
+ {
119627
+ "kind": "set",
119628
+ "resource": "@entity.confidence"
119629
+ },
119630
+ {
119631
+ "kind": "set",
119632
+ "resource": "@entity.failReason"
119633
+ },
119634
+ {
119635
+ "kind": "set",
119636
+ "resource": "@entity.reasoning"
119637
+ },
119638
+ {
119639
+ "kind": "set",
119640
+ "resource": "@entity.rung"
119641
+ },
119642
+ {
119643
+ "kind": "set",
119644
+ "resource": "@entity.status"
119645
+ }
119646
+ ],
116590
119647
  "emits": [
116591
119648
  {
116592
119649
  "description": "The ladder proved an answer. rung names which one served it: R0 exact, R1 table, R3 retrieved, R4 learned, R5 generative.",
@@ -116745,7 +119802,7 @@ function stdEscalatingDecisionEscalatingDecisionOrbital(params = {}) {
116745
119802
  {
116746
119803
  "name": "score",
116747
119804
  "required": true,
116748
- "type": "float"
119805
+ "type": "number"
116749
119806
  }
116750
119807
  ]
116751
119808
  },
@@ -116761,7 +119818,7 @@ function stdEscalatingDecisionEscalatingDecisionOrbital(params = {}) {
116761
119818
  {
116762
119819
  "name": "confidence",
116763
119820
  "required": true,
116764
- "type": "float"
119821
+ "type": "number"
116765
119822
  }
116766
119823
  ]
116767
119824
  },
@@ -116777,7 +119834,7 @@ function stdEscalatingDecisionEscalatingDecisionOrbital(params = {}) {
116777
119834
  {
116778
119835
  "name": "confidence",
116779
119836
  "required": true,
116780
- "type": "float"
119837
+ "type": "number"
116781
119838
  },
116782
119839
  {
116783
119840
  "name": "reasoning",
@@ -117396,6 +120453,24 @@ function stdKnowledgeTracingKnowledgeTracingOrbital(params = {}) {
117396
120453
  traits: [
117397
120454
  {
117398
120455
  "category": "lifecycle",
120456
+ "effectRow": [
120457
+ {
120458
+ "kind": "emit",
120459
+ "resource": "CAPTURE_LABEL"
120460
+ },
120461
+ {
120462
+ "kind": "emit",
120463
+ "resource": "OBSERVATION_MADE"
120464
+ },
120465
+ {
120466
+ "kind": "set",
120467
+ "resource": "@entity.lastOutcome"
120468
+ },
120469
+ {
120470
+ "kind": "set",
120471
+ "resource": "@entity.skillId"
120472
+ }
120473
+ ],
117399
120474
  "emits": [
117400
120475
  {
117401
120476
  "description": "Forwards the raw outcome to PosteriorTracker once skillId is recorded on the shared entity.",
@@ -119923,6 +122998,41 @@ function stdMarketBoard3dMarketBoard3DOrbital(params = {}) {
119923
122998
  "type": "number"
119924
122999
  }
119925
123000
  },
123001
+ "effectRow": [
123002
+ {
123003
+ "kind": "emit",
123004
+ "resource": "MOVE"
123005
+ },
123006
+ {
123007
+ "kind": "emit",
123008
+ "resource": "RESTART"
123009
+ },
123010
+ {
123011
+ "kind": "render-ui",
123012
+ "resource": "main"
123013
+ },
123014
+ {
123015
+ "kind": "render-ui",
123016
+ "resource": "main",
123017
+ "site": "tick"
123018
+ },
123019
+ {
123020
+ "kind": "set",
123021
+ "resource": "@entity.phase"
123022
+ },
123023
+ {
123024
+ "kind": "set",
123025
+ "resource": "@entity.selectedUnitId"
123026
+ },
123027
+ {
123028
+ "kind": "set",
123029
+ "resource": "@entity.validMoves"
123030
+ },
123031
+ {
123032
+ "kind": "ticks",
123033
+ "site": "tick"
123034
+ }
123035
+ ],
119926
123036
  "emits": [
119927
123037
  {
119928
123038
  "description": "Hero move intent applied by the hero-nav authority",
@@ -123930,6 +127040,46 @@ function stdObjectiveBoard3dObjectiveBoard3DOrbital(params = {}) {
123930
127040
  "type": "number"
123931
127041
  }
123932
127042
  },
127043
+ "effectRow": [
127044
+ {
127045
+ "kind": "emit",
127046
+ "resource": "MOVE"
127047
+ },
127048
+ {
127049
+ "kind": "emit",
127050
+ "resource": "RESTART"
127051
+ },
127052
+ {
127053
+ "kind": "emit",
127054
+ "resource": "WANDER",
127055
+ "site": "tick"
127056
+ },
127057
+ {
127058
+ "kind": "render-ui",
127059
+ "resource": "main"
127060
+ },
127061
+ {
127062
+ "kind": "render-ui",
127063
+ "resource": "main",
127064
+ "site": "tick"
127065
+ },
127066
+ {
127067
+ "kind": "set",
127068
+ "resource": "@entity.phase"
127069
+ },
127070
+ {
127071
+ "kind": "set",
127072
+ "resource": "@entity.selectedUnitId"
127073
+ },
127074
+ {
127075
+ "kind": "set",
127076
+ "resource": "@entity.validMoves"
127077
+ },
127078
+ {
127079
+ "kind": "ticks",
127080
+ "site": "tick"
127081
+ }
127082
+ ],
123933
127083
  "emits": [
123934
127084
  {
123935
127085
  "description": "Hero move intent applied by the hero-nav authority",
@@ -126824,6 +129974,66 @@ function stdPlatformerBoard2dPlatformerBoard2DOrbital(params = {}) {
126824
129974
  "type": "number"
126825
129975
  }
126826
129976
  },
129977
+ "effectRow": [
129978
+ {
129979
+ "kind": "emit",
129980
+ "resource": "BURST"
129981
+ },
129982
+ {
129983
+ "kind": "emit",
129984
+ "resource": "PLAT_JUMP"
129985
+ },
129986
+ {
129987
+ "kind": "emit",
129988
+ "resource": "PLAT_PLACE"
129989
+ },
129990
+ {
129991
+ "kind": "emit",
129992
+ "resource": "PLAT_STEER"
129993
+ },
129994
+ {
129995
+ "kind": "emit",
129996
+ "resource": "PROGRESS"
129997
+ },
129998
+ {
129999
+ "kind": "emit",
130000
+ "resource": "RESTART"
130001
+ },
130002
+ {
130003
+ "kind": "render-ui",
130004
+ "resource": "main"
130005
+ },
130006
+ {
130007
+ "kind": "render-ui",
130008
+ "resource": "main",
130009
+ "site": "tick"
130010
+ },
130011
+ {
130012
+ "kind": "set",
130013
+ "resource": "@entity.celebrated"
130014
+ },
130015
+ {
130016
+ "kind": "set",
130017
+ "resource": "@entity.frame",
130018
+ "site": "tick"
130019
+ },
130020
+ {
130021
+ "kind": "set",
130022
+ "resource": "@entity.lives"
130023
+ },
130024
+ {
130025
+ "kind": "set",
130026
+ "resource": "@entity.objectivesLeft"
130027
+ },
130028
+ {
130029
+ "kind": "set",
130030
+ "resource": "@entity.score"
130031
+ },
130032
+ {
130033
+ "kind": "ticks",
130034
+ "site": "tick"
130035
+ }
130036
+ ],
126827
130037
  "emits": [
126828
130038
  {
126829
130039
  "description": "Move-left intent from ArrowLeft/KeyA keydown or d-pad (forwarded to the body authority as STEER dir \u22121)",
@@ -128909,6 +132119,12 @@ function stdPlatformerPuzzlePlatformerPuzzleOrbital(params = {}) {
128909
132119
  }),
128910
132120
  {
128911
132121
  "category": "interaction",
132122
+ "effectRow": [
132123
+ {
132124
+ "kind": "render-ui",
132125
+ "resource": "overlay"
132126
+ }
132127
+ ],
128912
132128
  "linkedEntity": "PlatformerPuzzleData",
128913
132129
  "name": "PlatformerPuzzleNoopPreview",
128914
132130
  "scope": "instance",
@@ -129408,6 +132624,12 @@ function stdPlatformerPuzzlePlatformerPuzzleOrbital(params = {}) {
129408
132624
  "type": "trait"
129409
132625
  }
129410
132626
  },
132627
+ "effectRow": [
132628
+ {
132629
+ "kind": "render-ui",
132630
+ "resource": "main"
132631
+ }
132632
+ ],
129411
132633
  "entityContract": {
129412
132634
  "provides": [],
129413
132635
  "requires": []
@@ -129629,6 +132851,16 @@ function stdStatusLifecycleControlStatusLifecycleControlOrbital(params = {}) {
129629
132851
  "type": "[TransitionSpec]"
129630
132852
  }
129631
132853
  },
132854
+ "effectRow": [
132855
+ {
132856
+ "kind": "emit",
132857
+ "resource": "ChangeStatusRequested"
132858
+ },
132859
+ {
132860
+ "kind": "render-ui",
132861
+ "resource": "main"
132862
+ }
132863
+ ],
129632
132864
  "emits": [
129633
132865
  {
129634
132866
  "description": "Fired when the viewer picks a legal next status from the control.",
@@ -131274,6 +134506,50 @@ function stdSurvivalBoard3dSurvivalBoard3DOrbital(params = {}) {
131274
134506
  "type": "number"
131275
134507
  }
131276
134508
  },
134509
+ "effectRow": [
134510
+ {
134511
+ "kind": "emit",
134512
+ "resource": "BUILD_CAMP"
134513
+ },
134514
+ {
134515
+ "kind": "emit",
134516
+ "resource": "MOVE"
134517
+ },
134518
+ {
134519
+ "kind": "emit",
134520
+ "resource": "RESTART"
134521
+ },
134522
+ {
134523
+ "kind": "emit",
134524
+ "resource": "WANDER",
134525
+ "site": "tick"
134526
+ },
134527
+ {
134528
+ "kind": "render-ui",
134529
+ "resource": "main"
134530
+ },
134531
+ {
134532
+ "kind": "render-ui",
134533
+ "resource": "main",
134534
+ "site": "tick"
134535
+ },
134536
+ {
134537
+ "kind": "set",
134538
+ "resource": "@entity.phase"
134539
+ },
134540
+ {
134541
+ "kind": "set",
134542
+ "resource": "@entity.selectedUnitId"
134543
+ },
134544
+ {
134545
+ "kind": "set",
134546
+ "resource": "@entity.validMoves"
134547
+ },
134548
+ {
134549
+ "kind": "ticks",
134550
+ "site": "tick"
134551
+ }
134552
+ ],
131277
134553
  "emits": [
131278
134554
  {
131279
134555
  "description": "Hero move intent applied by the hero-nav authority",
@@ -134678,6 +137954,106 @@ function stdTacticsBoard2dTacticsBoard2DOrbital(params = {}) {
134678
137954
  "type": "number"
134679
137955
  }
134680
137956
  },
137957
+ "effectRow": [
137958
+ {
137959
+ "kind": "emit",
137960
+ "resource": "AI_TURN"
137961
+ },
137962
+ {
137963
+ "kind": "emit",
137964
+ "resource": "ATTACK"
137965
+ },
137966
+ {
137967
+ "kind": "emit",
137968
+ "resource": "MOVE"
137969
+ },
137970
+ {
137971
+ "kind": "render-ui",
137972
+ "resource": "main"
137973
+ },
137974
+ {
137975
+ "kind": "render-ui",
137976
+ "resource": "main",
137977
+ "site": "tick"
137978
+ },
137979
+ {
137980
+ "kind": "set",
137981
+ "resource": "@entity.actedIds"
137982
+ },
137983
+ {
137984
+ "kind": "set",
137985
+ "resource": "@entity.animAtkTicksLeft"
137986
+ },
137987
+ {
137988
+ "kind": "set",
137989
+ "resource": "@entity.animAtkTicksLeft",
137990
+ "site": "tick"
137991
+ },
137992
+ {
137993
+ "kind": "set",
137994
+ "resource": "@entity.animAttackerId"
137995
+ },
137996
+ {
137997
+ "kind": "set",
137998
+ "resource": "@entity.animAttackerId",
137999
+ "site": "tick"
138000
+ },
138001
+ {
138002
+ "kind": "set",
138003
+ "resource": "@entity.animState"
138004
+ },
138005
+ {
138006
+ "kind": "set",
138007
+ "resource": "@entity.animState",
138008
+ "site": "tick"
138009
+ },
138010
+ {
138011
+ "kind": "set",
138012
+ "resource": "@entity.animTicksLeft"
138013
+ },
138014
+ {
138015
+ "kind": "set",
138016
+ "resource": "@entity.animTicksLeft",
138017
+ "site": "tick"
138018
+ },
138019
+ {
138020
+ "kind": "set",
138021
+ "resource": "@entity.animUnitId"
138022
+ },
138023
+ {
138024
+ "kind": "set",
138025
+ "resource": "@entity.animUnitId",
138026
+ "site": "tick"
138027
+ },
138028
+ {
138029
+ "kind": "set",
138030
+ "resource": "@entity.attackTargets"
138031
+ },
138032
+ {
138033
+ "kind": "set",
138034
+ "resource": "@entity.movedIds"
138035
+ },
138036
+ {
138037
+ "kind": "set",
138038
+ "resource": "@entity.selectedUnitId"
138039
+ },
138040
+ {
138041
+ "kind": "set",
138042
+ "resource": "@entity.turn"
138043
+ },
138044
+ {
138045
+ "kind": "set",
138046
+ "resource": "@entity.uiPhase"
138047
+ },
138048
+ {
138049
+ "kind": "set",
138050
+ "resource": "@entity.validMoves"
138051
+ },
138052
+ {
138053
+ "kind": "ticks",
138054
+ "site": "tick"
138055
+ }
138056
+ ],
134681
138057
  "emits": [
134682
138058
  {
134683
138059
  "description": "Player move intent applied by the grid-tactics authority",
@@ -140147,6 +143523,53 @@ function stdTacticsBoard3dTacticsBoard3DOrbital(params = {}) {
140147
143523
  "type": "number"
140148
143524
  }
140149
143525
  },
143526
+ "effectRow": [
143527
+ {
143528
+ "kind": "emit",
143529
+ "resource": "AI_TURN"
143530
+ },
143531
+ {
143532
+ "kind": "emit",
143533
+ "resource": "ATTACK"
143534
+ },
143535
+ {
143536
+ "kind": "emit",
143537
+ "resource": "MOVE"
143538
+ },
143539
+ {
143540
+ "kind": "render-ui",
143541
+ "resource": "main"
143542
+ },
143543
+ {
143544
+ "kind": "render-ui",
143545
+ "resource": "main",
143546
+ "site": "tick"
143547
+ },
143548
+ {
143549
+ "kind": "set",
143550
+ "resource": "@entity.attackTargets"
143551
+ },
143552
+ {
143553
+ "kind": "set",
143554
+ "resource": "@entity.selectedUnitId"
143555
+ },
143556
+ {
143557
+ "kind": "set",
143558
+ "resource": "@entity.turn"
143559
+ },
143560
+ {
143561
+ "kind": "set",
143562
+ "resource": "@entity.uiPhase"
143563
+ },
143564
+ {
143565
+ "kind": "set",
143566
+ "resource": "@entity.validMoves"
143567
+ },
143568
+ {
143569
+ "kind": "ticks",
143570
+ "site": "tick"
143571
+ }
143572
+ ],
140150
143573
  "emits": [
140151
143574
  {
140152
143575
  "description": "Player move intent applied by the grid-tactics authority",
@@ -144564,6 +147987,53 @@ function stdWorldmapBoard2dWorldMapBoard2DOrbital(params = {}) {
144564
147987
  "type": "Asset"
144565
147988
  }
144566
147989
  },
147990
+ "effectRow": [
147991
+ {
147992
+ "kind": "emit",
147993
+ "resource": "ATTACK"
147994
+ },
147995
+ {
147996
+ "kind": "emit",
147997
+ "resource": "MINE_HIT"
147998
+ },
147999
+ {
148000
+ "kind": "emit",
148001
+ "resource": "MOVE"
148002
+ },
148003
+ {
148004
+ "kind": "render-ui",
148005
+ "resource": "main"
148006
+ },
148007
+ {
148008
+ "kind": "render-ui",
148009
+ "resource": "main",
148010
+ "site": "tick"
148011
+ },
148012
+ {
148013
+ "kind": "set",
148014
+ "resource": "@entity.effects"
148015
+ },
148016
+ {
148017
+ "kind": "set",
148018
+ "resource": "@entity.selectedHeroId"
148019
+ },
148020
+ {
148021
+ "kind": "set",
148022
+ "resource": "@entity.turn"
148023
+ },
148024
+ {
148025
+ "kind": "set",
148026
+ "resource": "@entity.validMoves"
148027
+ },
148028
+ {
148029
+ "kind": "set",
148030
+ "resource": "@entity.waypoints"
148031
+ },
148032
+ {
148033
+ "kind": "ticks",
148034
+ "site": "tick"
148035
+ }
148036
+ ],
144567
148037
  "emits": [
144568
148038
  {
144569
148039
  "description": "Emits UI:{unitClickEvent} with { unitId } on hero selection or attack-target click",
@@ -146683,6 +150153,16 @@ function stdUiBookChapterViewBookChapterViewOrbital(params = {}) {
146683
150153
  "type": "boolean"
146684
150154
  }
146685
150155
  },
150156
+ "effectRow": [
150157
+ {
150158
+ "kind": "fetch",
150159
+ "resource": "BookChapterViewItem"
150160
+ },
150161
+ {
150162
+ "kind": "render-ui",
150163
+ "resource": "main"
150164
+ }
150165
+ ],
146686
150166
  "emits": [
146687
150167
  {
146688
150168
  "description": "BookChapterView rows finished loading; payload.data holds the collection.",
@@ -146946,6 +150426,12 @@ function stdUiBookCoverPageBookCoverPageOrbital(params = {}) {
146946
150426
  "type": "string"
146947
150427
  }
146948
150428
  },
150429
+ "effectRow": [
150430
+ {
150431
+ "kind": "render-ui",
150432
+ "resource": "main"
150433
+ }
150434
+ ],
146949
150435
  "entityContract": {
146950
150436
  "provides": [],
146951
150437
  "requires": []
@@ -147130,6 +150616,12 @@ function stdUiBookNavBarBookNavBarOrbital(params = {}) {
147130
150616
  "type": "number"
147131
150617
  }
147132
150618
  },
150619
+ "effectRow": [
150620
+ {
150621
+ "kind": "render-ui",
150622
+ "resource": "main"
150623
+ }
150624
+ ],
147133
150625
  "entityContract": {
147134
150626
  "provides": [],
147135
150627
  "requires": []
@@ -147306,6 +150798,16 @@ function stdUiBookTableOfContentsBookTableOfContentsOrbital(params = {}) {
147306
150798
  "type": "boolean"
147307
150799
  }
147308
150800
  },
150801
+ "effectRow": [
150802
+ {
150803
+ "kind": "fetch",
150804
+ "resource": "BookTableOfContentsItem"
150805
+ },
150806
+ {
150807
+ "kind": "render-ui",
150808
+ "resource": "main"
150809
+ }
150810
+ ],
147309
150811
  "emits": [
147310
150812
  {
147311
150813
  "description": "BookTableOfContents rows finished loading; payload.data holds the collection.",
@@ -147713,6 +151215,16 @@ function stdUiBookViewerBookViewerOrbital(params = {}) {
147713
151215
  "type": "number"
147714
151216
  }
147715
151217
  },
151218
+ "effectRow": [
151219
+ {
151220
+ "kind": "fetch",
151221
+ "resource": "BookViewerItem"
151222
+ },
151223
+ {
151224
+ "kind": "render-ui",
151225
+ "resource": "main"
151226
+ }
151227
+ ],
147716
151228
  "emits": [
147717
151229
  {
147718
151230
  "description": "BookViewer rows finished loading; payload.data holds the collection.",
@@ -148118,6 +151630,16 @@ function stdUiCaseStudyOrganismCaseStudyOrganismOrbital(params = {}) {
148118
151630
  "type": "number"
148119
151631
  }
148120
151632
  },
151633
+ "effectRow": [
151634
+ {
151635
+ "kind": "fetch",
151636
+ "resource": "CaseStudyOrganismItem"
151637
+ },
151638
+ {
151639
+ "kind": "render-ui",
151640
+ "resource": "main"
151641
+ }
151642
+ ],
148121
151643
  "emits": [
148122
151644
  {
148123
151645
  "description": "CaseStudyOrganism rows finished loading; payload.data holds the collection.",
@@ -148511,6 +152033,12 @@ function stdUiChatBarChatBarOrbital(params = {}) {
148511
152033
  "type": "number"
148512
152034
  }
148513
152035
  },
152036
+ "effectRow": [
152037
+ {
152038
+ "kind": "render-ui",
152039
+ "resource": "main"
152040
+ }
152041
+ ],
148514
152042
  "entityContract": {
148515
152043
  "provides": [],
148516
152044
  "requires": []
@@ -148702,6 +152230,12 @@ function stdUiCodeRunnerPanelCodeRunnerPanelOrbital(params = {}) {
148702
152230
  "type": "boolean"
148703
152231
  }
148704
152232
  },
152233
+ "effectRow": [
152234
+ {
152235
+ "kind": "render-ui",
152236
+ "resource": "main"
152237
+ }
152238
+ ],
148705
152239
  "entityContract": {
148706
152240
  "provides": [],
148707
152241
  "requires": []
@@ -149014,6 +152548,12 @@ function stdUiDashboardGridDashboardGridOrbital(params = {}) {
149014
152548
  "type": "number"
149015
152549
  }
149016
152550
  },
152551
+ "effectRow": [
152552
+ {
152553
+ "kind": "render-ui",
152554
+ "resource": "main"
152555
+ }
152556
+ ],
149017
152557
  "entityContract": {
149018
152558
  "provides": [],
149019
152559
  "requires": []
@@ -149649,6 +153189,16 @@ function stdUiDetailPanelDetailPanelOrbital(params = {}) {
149649
153189
  "type": "string"
149650
153190
  }
149651
153191
  },
153192
+ "effectRow": [
153193
+ {
153194
+ "kind": "fetch",
153195
+ "resource": "DetailPanelItem"
153196
+ },
153197
+ {
153198
+ "kind": "render-ui",
153199
+ "resource": "main"
153200
+ }
153201
+ ],
149652
153202
  "emits": [
149653
153203
  {
149654
153204
  "description": "DetailPanel rows finished loading; payload.data holds the collection.",
@@ -150133,6 +153683,12 @@ function stdUiDockLayoutDockLayoutOrbital(params = {}) {
150133
153683
  "type": "string"
150134
153684
  }
150135
153685
  },
153686
+ "effectRow": [
153687
+ {
153688
+ "kind": "render-ui",
153689
+ "resource": "main"
153690
+ }
153691
+ ],
150136
153692
  "emits": [
150137
153693
  {
150138
153694
  "definerKnob": "onSidebarCollapsedChange",
@@ -150511,6 +154067,16 @@ function stdUiDrawerSlotDrawerSlotOrbital(params = {}) {
150511
154067
  "type": "string"
150512
154068
  }
150513
154069
  },
154070
+ "effectRow": [
154071
+ {
154072
+ "kind": "fetch",
154073
+ "resource": "DrawerSlotItem"
154074
+ },
154075
+ {
154076
+ "kind": "render-ui",
154077
+ "resource": "main"
154078
+ }
154079
+ ],
150514
154080
  "entityContract": {
150515
154081
  "provides": [],
150516
154082
  "requires": []
@@ -150977,6 +154543,16 @@ function stdUiEntityCardsEntityCardsOrbital(params = {}) {
150977
154543
  "type": "string"
150978
154544
  }
150979
154545
  },
154546
+ "effectRow": [
154547
+ {
154548
+ "kind": "fetch",
154549
+ "resource": "EntityCardsItem"
154550
+ },
154551
+ {
154552
+ "kind": "render-ui",
154553
+ "resource": "main"
154554
+ }
154555
+ ],
150980
154556
  "emits": [
150981
154557
  {
150982
154558
  "description": "User opened a record from the list.",
@@ -151556,6 +155132,16 @@ function stdUiEntityListEntityListOrbital(params = {}) {
151556
155132
  ]
151557
155133
  }
151558
155134
  },
155135
+ "effectRow": [
155136
+ {
155137
+ "kind": "fetch",
155138
+ "resource": "EntityListItem"
155139
+ },
155140
+ {
155141
+ "kind": "render-ui",
155142
+ "resource": "main"
155143
+ }
155144
+ ],
151559
155145
  "emits": [
151560
155146
  {
151561
155147
  "description": "Item actions - schema-driven or function-based",
@@ -152292,6 +155878,16 @@ function stdUiEntityTableEntityTableOrbital(params = {}) {
152292
155878
  "type": "number"
152293
155879
  }
152294
155880
  },
155881
+ "effectRow": [
155882
+ {
155883
+ "kind": "fetch",
155884
+ "resource": "EntityTableItem"
155885
+ },
155886
+ {
155887
+ "kind": "render-ui",
155888
+ "resource": "main"
155889
+ }
155890
+ ],
152295
155891
  "emits": [
152296
155892
  {
152297
155893
  "description": "User opened a record from the list.",
@@ -152774,6 +156370,16 @@ function stdUiFeatureGridOrganismFeatureGridOrganismOrbital(params = {}) {
152774
156370
  "type": "number"
152775
156371
  }
152776
156372
  },
156373
+ "effectRow": [
156374
+ {
156375
+ "kind": "fetch",
156376
+ "resource": "FeatureGridOrganismItem"
156377
+ },
156378
+ {
156379
+ "kind": "render-ui",
156380
+ "resource": "main"
156381
+ }
156382
+ ],
152777
156383
  "emits": [
152778
156384
  {
152779
156385
  "description": "FeatureGridOrganism rows finished loading; payload.data holds the collection.",
@@ -154144,6 +157750,16 @@ function stdUiFormFormOrbital(params = {}) {
154144
157750
  "type": "[FormViolationTriggersItem]"
154145
157751
  }
154146
157752
  },
157753
+ "effectRow": [
157754
+ {
157755
+ "kind": "fetch",
157756
+ "resource": "FormItem"
157757
+ },
157758
+ {
157759
+ "kind": "render-ui",
157760
+ "resource": "main"
157761
+ }
157762
+ ],
154147
157763
  "emits": [
154148
157764
  {
154149
157765
  "definerKnob": "submitEvent",
@@ -155746,6 +159362,16 @@ function stdUiFormSectionFormSectionOrbital(params = {}) {
155746
159362
  "type": "[FormSectionViolationTriggersItem]"
155747
159363
  }
155748
159364
  },
159365
+ "effectRow": [
159366
+ {
159367
+ "kind": "fetch",
159368
+ "resource": "FormSectionItem"
159369
+ },
159370
+ {
159371
+ "kind": "render-ui",
159372
+ "resource": "main"
159373
+ }
159374
+ ],
155749
159375
  "emits": [
155750
159376
  {
155751
159377
  "definerKnob": "submitEvent",
@@ -156455,6 +160081,16 @@ function stdUiHeroOrganismHeroOrganismOrbital(params = {}) {
156455
160081
  "type": "number"
156456
160082
  }
156457
160083
  },
160084
+ "effectRow": [
160085
+ {
160086
+ "kind": "fetch",
160087
+ "resource": "HeroOrganismItem"
160088
+ },
160089
+ {
160090
+ "kind": "render-ui",
160091
+ "resource": "main"
160092
+ }
160093
+ ],
156458
160094
  "emits": [
156459
160095
  {
156460
160096
  "description": "HeroOrganism rows finished loading; payload.data holds the collection.",
@@ -156843,6 +160479,16 @@ function stdUiMasterDetailMasterDetailOrbital(params = {}) {
156843
160479
  "type": "number"
156844
160480
  }
156845
160481
  },
160482
+ "effectRow": [
160483
+ {
160484
+ "kind": "fetch",
160485
+ "resource": "MasterDetailItem"
160486
+ },
160487
+ {
160488
+ "kind": "render-ui",
160489
+ "resource": "main"
160490
+ }
160491
+ ],
156846
160492
  "emits": [
156847
160493
  {
156848
160494
  "description": "MasterDetail rows finished loading; payload.data holds the collection.",
@@ -157149,6 +160795,12 @@ function stdUiMasterDetailLayoutMasterDetailLayoutOrbital(params = {}) {
157149
160795
  "type": "string"
157150
160796
  }
157151
160797
  },
160798
+ "effectRow": [
160799
+ {
160800
+ "kind": "render-ui",
160801
+ "resource": "main"
160802
+ }
160803
+ ],
157152
160804
  "entityContract": {
157153
160805
  "provides": [],
157154
160806
  "requires": []
@@ -157552,6 +161204,16 @@ function stdUiMediaGalleryMediaGalleryOrbital(params = {}) {
157552
161204
  "type": "number"
157553
161205
  }
157554
161206
  },
161207
+ "effectRow": [
161208
+ {
161209
+ "kind": "fetch",
161210
+ "resource": "MediaGalleryItem"
161211
+ },
161212
+ {
161213
+ "kind": "render-ui",
161214
+ "resource": "main"
161215
+ }
161216
+ ],
157555
161217
  "emits": [
157556
161218
  {
157557
161219
  "definerKnob": "selectionEvent",
@@ -157925,6 +161587,16 @@ function stdUiModalSlotModalSlotOrbital(params = {}) {
157925
161587
  "type": "string"
157926
161588
  }
157927
161589
  },
161590
+ "effectRow": [
161591
+ {
161592
+ "kind": "fetch",
161593
+ "resource": "ModalSlotItem"
161594
+ },
161595
+ {
161596
+ "kind": "render-ui",
161597
+ "resource": "main"
161598
+ }
161599
+ ],
157928
161600
  "entityContract": {
157929
161601
  "provides": [],
157930
161602
  "requires": []
@@ -158247,6 +161919,16 @@ function stdUiPricingOrganismPricingOrganismOrbital(params = {}) {
158247
161919
  "type": "number"
158248
161920
  }
158249
161921
  },
161922
+ "effectRow": [
161923
+ {
161924
+ "kind": "fetch",
161925
+ "resource": "PricingOrganismItem"
161926
+ },
161927
+ {
161928
+ "kind": "render-ui",
161929
+ "resource": "main"
161930
+ }
161931
+ ],
158250
161932
  "emits": [
158251
161933
  {
158252
161934
  "description": "PricingOrganism rows finished loading; payload.data holds the collection.",
@@ -158544,6 +162226,12 @@ function stdUiRuntimeDebuggerRuntimeDebuggerOrbital(params = {}) {
158544
162226
  ]
158545
162227
  }
158546
162228
  },
162229
+ "effectRow": [
162230
+ {
162231
+ "kind": "render-ui",
162232
+ "resource": "main"
162233
+ }
162234
+ ],
158547
162235
  "entityContract": {
158548
162236
  "provides": [],
158549
162237
  "requires": []
@@ -158765,6 +162453,12 @@ function stdUiSegmentRendererSegmentRendererOrbital(params = {}) {
158765
162453
  "type": "SegmentRendererUserProgress"
158766
162454
  }
158767
162455
  },
162456
+ "effectRow": [
162457
+ {
162458
+ "kind": "render-ui",
162459
+ "resource": "main"
162460
+ }
162461
+ ],
158768
162462
  "entityContract": {
158769
162463
  "provides": [],
158770
162464
  "requires": []
@@ -159084,6 +162778,16 @@ function stdUiShowcaseOrganismShowcaseOrganismOrbital(params = {}) {
159084
162778
  "type": "number"
159085
162779
  }
159086
162780
  },
162781
+ "effectRow": [
162782
+ {
162783
+ "kind": "fetch",
162784
+ "resource": "ShowcaseOrganismItem"
162785
+ },
162786
+ {
162787
+ "kind": "render-ui",
162788
+ "resource": "main"
162789
+ }
162790
+ ],
159087
162791
  "emits": [
159088
162792
  {
159089
162793
  "description": "ShowcaseOrganism rows finished loading; payload.data holds the collection.",
@@ -159414,6 +163118,16 @@ function stdUiSplitPaneSplitPaneOrbital(params = {}) {
159414
163118
  "type": "string"
159415
163119
  }
159416
163120
  },
163121
+ "effectRow": [
163122
+ {
163123
+ "kind": "render-ui",
163124
+ "resource": "main"
163125
+ },
163126
+ {
163127
+ "kind": "set",
163128
+ "resource": "@entity.ratio"
163129
+ }
163130
+ ],
159417
163131
  "emits": [
159418
163132
  {
159419
163133
  "definerKnob": "onRatioChange",
@@ -159908,6 +163622,16 @@ function stdUiStatCardStatCardOrbital(params = {}) {
159908
163622
  "type": "[string]"
159909
163623
  }
159910
163624
  },
163625
+ "effectRow": [
163626
+ {
163627
+ "kind": "fetch",
163628
+ "resource": "StatCardItem"
163629
+ },
163630
+ {
163631
+ "kind": "render-ui",
163632
+ "resource": "main"
163633
+ }
163634
+ ],
159911
163635
  "emits": [
159912
163636
  {
159913
163637
  "description": "StatCard rows finished loading; payload.data holds the collection.",
@@ -160243,6 +163967,12 @@ function stdUiStateMachineViewStateMachineViewOrbital(params = {}) {
160243
163967
  "type": "boolean"
160244
163968
  }
160245
163969
  },
163970
+ "effectRow": [
163971
+ {
163972
+ "kind": "render-ui",
163973
+ "resource": "main"
163974
+ }
163975
+ ],
160246
163976
  "entityContract": {
160247
163977
  "provides": [],
160248
163978
  "requires": []
@@ -160514,6 +164244,16 @@ function stdUiStatsOrganismStatsOrganismOrbital(params = {}) {
160514
164244
  "type": "number"
160515
164245
  }
160516
164246
  },
164247
+ "effectRow": [
164248
+ {
164249
+ "kind": "fetch",
164250
+ "resource": "StatsOrganismItem"
164251
+ },
164252
+ {
164253
+ "kind": "render-ui",
164254
+ "resource": "main"
164255
+ }
164256
+ ],
160517
164257
  "emits": [
160518
164258
  {
160519
164259
  "description": "StatsOrganism rows finished loading; payload.data holds the collection.",
@@ -160924,6 +164664,16 @@ function stdUiStepFlowOrganismStepFlowOrganismOrbital(params = {}) {
160924
164664
  "type": "number"
160925
164665
  }
160926
164666
  },
164667
+ "effectRow": [
164668
+ {
164669
+ "kind": "fetch",
164670
+ "resource": "StepFlowOrganismItem"
164671
+ },
164672
+ {
164673
+ "kind": "render-ui",
164674
+ "resource": "main"
164675
+ }
164676
+ ],
160927
164677
  "emits": [
160928
164678
  {
160929
164679
  "description": "StepFlowOrganism rows finished loading; payload.data holds the collection.",
@@ -161362,6 +165112,16 @@ function stdUiSubagentTracePanelSubagentTracePanelOrbital(params = {}) {
161362
165112
  "type": "number"
161363
165113
  }
161364
165114
  },
165115
+ "effectRow": [
165116
+ {
165117
+ "kind": "render-ui",
165118
+ "resource": "main"
165119
+ },
165120
+ {
165121
+ "kind": "render-ui",
165122
+ "resource": "overlay"
165123
+ }
165124
+ ],
161365
165125
  "emits": [
161366
165126
  {
161367
165127
  "definerKnob": "onClose",
@@ -161700,6 +165460,12 @@ function stdUiTabbedContainerTabbedContainerOrbital(params = {}) {
161700
165460
  "type": "[TabbedContainerTabsItem]"
161701
165461
  }
161702
165462
  },
165463
+ "effectRow": [
165464
+ {
165465
+ "kind": "render-ui",
165466
+ "resource": "main"
165467
+ }
165468
+ ],
161703
165469
  "emits": [
161704
165470
  {
161705
165471
  "definerKnob": "onTabChange",
@@ -162021,6 +165787,16 @@ function stdUiTeamOrganismTeamOrganismOrbital(params = {}) {
162021
165787
  "type": "number"
162022
165788
  }
162023
165789
  },
165790
+ "effectRow": [
165791
+ {
165792
+ "kind": "fetch",
165793
+ "resource": "TeamOrganismItem"
165794
+ },
165795
+ {
165796
+ "kind": "render-ui",
165797
+ "resource": "main"
165798
+ }
165799
+ ],
162024
165800
  "emits": [
162025
165801
  {
162026
165802
  "description": "TeamOrganism rows finished loading; payload.data holds the collection.",
@@ -162447,6 +166223,16 @@ function stdUiTimelineTimelineOrbital(params = {}) {
162447
166223
  "type": "string"
162448
166224
  }
162449
166225
  },
166226
+ "effectRow": [
166227
+ {
166228
+ "kind": "fetch",
166229
+ "resource": "TimelineItem"
166230
+ },
166231
+ {
166232
+ "kind": "render-ui",
166233
+ "resource": "main"
166234
+ }
166235
+ ],
162450
166236
  "emits": [
162451
166237
  {
162452
166238
  "description": "User opened a record from the list.",
@@ -162799,6 +166585,16 @@ function stdUiToastSlotToastSlotOrbital(params = {}) {
162799
166585
  ]
162800
166586
  }
162801
166587
  },
166588
+ "effectRow": [
166589
+ {
166590
+ "kind": "fetch",
166591
+ "resource": "ToastSlotItem"
166592
+ },
166593
+ {
166594
+ "kind": "render-ui",
166595
+ "resource": "main"
166596
+ }
166597
+ ],
162802
166598
  "entityContract": {
162803
166599
  "provides": [],
162804
166600
  "requires": []