@tutti-os/agent-gui 0.0.154 → 0.0.155
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.
- package/README.md +6 -0
- package/dist/agent-gui.js +2 -2
- package/dist/{chunk-FGAKY5YL.js → chunk-2K7NUYHG.js} +6 -3
- package/dist/chunk-2K7NUYHG.js.map +1 -0
- package/dist/{chunk-OSOJX2OE.js → chunk-SX5KN3LN.js} +2 -1
- package/dist/chunk-SX5KN3LN.js.map +1 -0
- package/dist/{contribution-CC2DVyUV.d.ts → contribution--lqIXGqn.d.ts} +11 -2
- package/dist/index.js +2 -2
- package/dist/workbench/contribution.d.ts +1 -1
- package/dist/workbench/contribution.js +3 -1
- package/dist/workbench/index.d.ts +2 -2
- package/dist/workbench/index.js +3 -1
- package/package.json +13 -13
- package/dist/chunk-FGAKY5YL.js.map +0 -1
- package/dist/chunk-OSOJX2OE.js.map +0 -1
package/README.md
CHANGED
|
@@ -129,6 +129,12 @@ pnpm check:agent-activity-runtime-boundaries
|
|
|
129
129
|
`hostCapabilities`, `hostActions`, and `renderSlots`. Extend the owning object;
|
|
130
130
|
do not restore flat compatibility props.
|
|
131
131
|
|
|
132
|
+
Workbench hosts with custom Dock entry projections can import
|
|
133
|
+
`createAgentGuiWorkbenchPreviewContent` from
|
|
134
|
+
`@tutti-os/agent-gui/workbench`. The helper owns AgentGUI preview identity,
|
|
135
|
+
revision, and render-context construction; hosts continue to own their Agent
|
|
136
|
+
directory, product-specific Dock grouping, and preview body renderer.
|
|
137
|
+
|
|
132
138
|
## Reference Provenance Filtering
|
|
133
139
|
|
|
134
140
|
Reference provenance filtering is disabled by default. Collaboration hosts can
|
package/dist/agent-gui.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AgentGUI
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-2K7NUYHG.js";
|
|
4
4
|
import "./chunk-A4WCTHWS.js";
|
|
5
|
-
import "./chunk-
|
|
5
|
+
import "./chunk-SX5KN3LN.js";
|
|
6
6
|
import "./chunk-HBJJY2AC.js";
|
|
7
7
|
import "./chunk-TUWQV2MC.js";
|
|
8
8
|
import "./chunk-MHOYBRCY.js";
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
resolveAgentGuiSessionProviderFlatIconUrl,
|
|
13
13
|
resolveNextAgentGUIConversationRailWidthPx,
|
|
14
14
|
shouldAutoCollapseAgentGUIConversationRail
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-SX5KN3LN.js";
|
|
16
16
|
import {
|
|
17
17
|
resolveAgentGuiWorkbenchProviderLabel
|
|
18
18
|
} from "./chunk-R2ZADXRB.js";
|
|
@@ -26928,7 +26928,7 @@ var AgentGUIEmptyHeroCarouselStage = class extends Component3 {
|
|
|
26928
26928
|
// while measuring the slot preserves alignment across host padding and
|
|
26929
26929
|
// ready/gated subtree changes. The CSS fallback covers the pre-measure paint.
|
|
26930
26930
|
startAlignment() {
|
|
26931
|
-
if (this.props.items.length <= 1 || !this.stage || !this.layer) {
|
|
26931
|
+
if (this.props.previewMode || this.props.items.length <= 1 || !this.stage || !this.layer) {
|
|
26932
26932
|
this.stopAlignment();
|
|
26933
26933
|
return;
|
|
26934
26934
|
}
|
|
@@ -27590,6 +27590,7 @@ var AgentGUIEmptyHomePane = memo3(function AgentGUIEmptyHomePane2({
|
|
|
27590
27590
|
agentTargets,
|
|
27591
27591
|
selectedAgentTarget,
|
|
27592
27592
|
onProviderSelect,
|
|
27593
|
+
previewMode,
|
|
27593
27594
|
labels,
|
|
27594
27595
|
...heroProps
|
|
27595
27596
|
}) {
|
|
@@ -27617,6 +27618,7 @@ var AgentGUIEmptyHomePane = memo3(function AgentGUIEmptyHomePane2({
|
|
|
27617
27618
|
activeAgentTargetId: selectedAgentTarget?.agentTargetId ?? selectedAgentTarget?.targetId,
|
|
27618
27619
|
items: avatarPresentations,
|
|
27619
27620
|
onProviderSelect,
|
|
27621
|
+
previewMode,
|
|
27620
27622
|
providerSelectLabel: labels.providerSwitchLabel,
|
|
27621
27623
|
children: /* @__PURE__ */ jsx47(
|
|
27622
27624
|
AgentTargetSetupGate,
|
|
@@ -35875,6 +35877,7 @@ var AgentGUIDetailPane = memo12(function AgentGUIDetailPane2({
|
|
|
35875
35877
|
onProviderSelect: canSwitchComposerProvider && viewModel.rail.activeConversationId === null ? selectHomeComposerAgentTargetAndFocus : void 0,
|
|
35876
35878
|
inlineNoticeChrome,
|
|
35877
35879
|
isRespondingApproval: viewModel.interaction.isRespondingApproval,
|
|
35880
|
+
previewMode,
|
|
35878
35881
|
onSubmitApprovalOption: submitApprovalOption,
|
|
35879
35882
|
onRetryActivation: retryActivation,
|
|
35880
35883
|
onAuthLogin: authLogin,
|
|
@@ -39544,4 +39547,4 @@ export {
|
|
|
39544
39547
|
AgentHandoffMenu,
|
|
39545
39548
|
AgentGUI
|
|
39546
39549
|
};
|
|
39547
|
-
//# sourceMappingURL=chunk-
|
|
39550
|
+
//# sourceMappingURL=chunk-2K7NUYHG.js.map
|