@tutti-os/agent-gui 0.0.187 → 0.0.189
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/dist/agent-conversation/index.d.ts +3 -3
- package/dist/agent-conversation/index.js +1 -1
- package/dist/agent-gui.d.ts +2 -2
- package/dist/agent-gui.js +2 -2
- package/dist/agent-message-center/index.d.ts +1 -1
- package/dist/{agentConversationVM-DWEy7jzx.d.ts → agentConversationVM-CYXZSrh9.d.ts} +20 -2
- package/dist/{agentGuiNodeTypes-CbBAccKv.d.ts → agentGuiNodeTypes-DAT3XJON.d.ts} +1 -1
- package/dist/app/renderer/agentactivity.css +8 -7
- package/dist/{chunk-62JB3KCN.js → chunk-BVA5SVOD.js} +1027 -923
- package/dist/chunk-BVA5SVOD.js.map +1 -0
- package/dist/{chunk-43M2GHDA.js → chunk-F5YFT4VB.js} +217 -103
- package/dist/chunk-F5YFT4VB.js.map +1 -0
- package/dist/index.d.ts +20 -2
- package/dist/index.js +2 -2
- package/package.json +14 -14
- package/dist/chunk-43M2GHDA.js.map +0 -1
- package/dist/chunk-62JB3KCN.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import react__default, { ReactNode, PropsWithChildren, JSX } from 'react';
|
|
|
3
3
|
import * as _tutti_os_ui_i18n_runtime from '@tutti-os/ui-i18n-runtime';
|
|
4
4
|
import { I18nRuntime } from '@tutti-os/ui-i18n-runtime';
|
|
5
5
|
import * as _tutti_os_agent_activity_core from '@tutti-os/agent-activity-core';
|
|
6
|
-
import { AgentActivityGoalControlInput, AgentActivityGoalControlResult, AgentActivityCreateSessionInput, AgentActivitySession, AgentActivityDeleteSessionInput, AgentActivityDeleteSessionResult, AgentActivitySendInput, AgentActivitySessionSettings, AgentActivityInitialGoalControl, AgentActivityActivateSessionResult, AgentActivitySnapshot, AgentSessionEngine, AgentActivityMessageOrder, AgentActivityMessagePage, AgentActivitySendInputResult, AgentActivityRenameSessionInput, AgentActivitySubmitInteractiveInput, AgentActivitySubmitInteractiveResult, AgentActivitySnapshotListener, AgentActivityMessageSemantics, AgentActivityTurn, AgentActivitySlashCommandPolicy, AgentActivityUsage, CanonicalAgentSession, AgentActivitySubmitSettingsPatch, AgentSessionEngineState } from '@tutti-os/agent-activity-core';
|
|
6
|
+
import { AgentActivityGoalControlInput, AgentActivityGoalControlResult, AgentActivityCreateSessionInput, AgentActivitySession, AgentActivityDeleteSessionInput, AgentActivityDeleteSessionResult, AgentActivitySendInput, AgentActivitySessionSettings, AgentActivityInitialGoalControl, AgentActivityActivateSessionResult, AgentActivitySnapshot, AgentSessionEngine, AgentActivityMessageOrder, AgentActivityMessagePage, AgentActivitySendInputResult, AgentActivityRenameSessionInput, AgentActivitySubmitInteractiveInput, AgentActivitySubmitInteractiveResult, AgentActivitySnapshotListener, AgentActivityMessageSemantics, AgentActivityGoalControlAction, AgentActivityTurn, AgentActivitySlashCommandPolicy, AgentActivityUsage, CanonicalAgentSession, AgentActivitySubmitSettingsPatch, AgentSessionEngineState } from '@tutti-os/agent-activity-core';
|
|
7
7
|
export { AgentActivityAdapter, AgentActivityMessage, AgentActivityNeedsAttentionItem, AgentActivitySnapshot, selectNeedsAttentionCount, selectNeedsAttentionItems } from '@tutti-os/agent-activity-core';
|
|
8
8
|
import { WorkspaceUserProjectService, WorkspaceUserProject } from '@tutti-os/workspace-user-project/contracts';
|
|
9
9
|
import { WorkspaceFileReference, ReferenceLocateTarget, WorkspaceFileReferenceAdapter, ReferenceProvenanceCatalog } from '@tutti-os/workspace-file-reference/contracts';
|
|
@@ -1393,6 +1393,13 @@ interface WorkspaceAgentSessionDetailThinking {
|
|
|
1393
1393
|
occurredAtUnixMs?: number | null;
|
|
1394
1394
|
sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
|
|
1395
1395
|
}
|
|
1396
|
+
interface WorkspaceAgentSessionDetailGoalControl {
|
|
1397
|
+
id: string;
|
|
1398
|
+
action: AgentActivityGoalControlAction;
|
|
1399
|
+
body: string;
|
|
1400
|
+
occurredAtUnixMs?: number | null;
|
|
1401
|
+
sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
|
|
1402
|
+
}
|
|
1396
1403
|
interface WorkspaceAgentSessionDetailToolCall {
|
|
1397
1404
|
id: string;
|
|
1398
1405
|
name: string;
|
|
@@ -1445,6 +1452,7 @@ interface WorkspaceAgentSessionDetailViewModel {
|
|
|
1445
1452
|
session: AgentActivitySession;
|
|
1446
1453
|
cwd: string;
|
|
1447
1454
|
workspaceRoot: string | null;
|
|
1455
|
+
goalControls?: WorkspaceAgentSessionDetailGoalControl[];
|
|
1448
1456
|
turns: WorkspaceAgentSessionDetailTurn[];
|
|
1449
1457
|
sessionTurns?: readonly AgentActivityTurn[];
|
|
1450
1458
|
showProcessingIndicator?: boolean;
|
|
@@ -1508,6 +1516,16 @@ interface AgentGeneratedImageRowVM {
|
|
|
1508
1516
|
occurredAtUnixMs: number | null;
|
|
1509
1517
|
}
|
|
1510
1518
|
|
|
1519
|
+
interface AgentGoalControlRowVM {
|
|
1520
|
+
kind: "goal-control";
|
|
1521
|
+
id: string;
|
|
1522
|
+
turnId: null;
|
|
1523
|
+
action: AgentActivityGoalControlAction;
|
|
1524
|
+
body: string;
|
|
1525
|
+
occurredAtUnixMs: number | null;
|
|
1526
|
+
sourceTimelineItems?: WorkspaceAgentActivityTimelineItem[];
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1511
1529
|
type AgentTranscriptPresentationKind = "content" | "specific-progress" | "turn-boundary";
|
|
1512
1530
|
|
|
1513
1531
|
interface AgentMessageContentVM {
|
|
@@ -1735,7 +1753,7 @@ interface AgentTurnSummaryRowVM {
|
|
|
1735
1753
|
occurredAtUnixMs: number | null;
|
|
1736
1754
|
}
|
|
1737
1755
|
|
|
1738
|
-
type AgentTranscriptRowVM = AgentGeneratedImageRowVM | AgentMessageRowVM | AgentToolGroupRowVM | AgentTurnSummaryRowVM | AgentProcessingRowVM;
|
|
1756
|
+
type AgentTranscriptRowVM = AgentGeneratedImageRowVM | AgentGoalControlRowVM | AgentMessageRowVM | AgentToolGroupRowVM | AgentTurnSummaryRowVM | AgentProcessingRowVM;
|
|
1739
1757
|
|
|
1740
1758
|
type AgentConversationPromptVM = AgentApprovalItemVM | {
|
|
1741
1759
|
kind: "ask-user";
|
package/dist/index.js
CHANGED
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
normalizeAgentGUIAgentTargets,
|
|
11
11
|
resolveAgentGUIAgentTarget,
|
|
12
12
|
selectAgentStatusControllerSnapshot
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-F5YFT4VB.js";
|
|
14
14
|
import {
|
|
15
15
|
AGENT_CONVERSATION_RAIL_RUNTIME_METHODS,
|
|
16
16
|
createAgentConversationRailRuntime,
|
|
@@ -29,7 +29,7 @@ import "./chunk-YSA4MXR5.js";
|
|
|
29
29
|
import "./chunk-MHOYBRCY.js";
|
|
30
30
|
import "./chunk-SZVHT57M.js";
|
|
31
31
|
import "./chunk-5UTK6FDH.js";
|
|
32
|
-
import "./chunk-
|
|
32
|
+
import "./chunk-BVA5SVOD.js";
|
|
33
33
|
import "./chunk-LLIM2OX6.js";
|
|
34
34
|
import "./chunk-THBCAUBR.js";
|
|
35
35
|
import "./chunk-UP3ZDYTN.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tutti-os/agent-gui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.189",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -143,19 +143,19 @@
|
|
|
143
143
|
"dependencies": {
|
|
144
144
|
"@monaco-editor/react": "^4.7.0",
|
|
145
145
|
"@tanstack/react-virtual": "^3.13.12",
|
|
146
|
-
"@tutti-os/agent-activity-core": "0.0.
|
|
147
|
-
"@tutti-os/browser-node": "0.0.
|
|
148
|
-
"@tutti-os/ui-i18n-runtime": "0.0.
|
|
149
|
-
"@tutti-os/ui-react-hooks": "0.0.
|
|
150
|
-
"@tutti-os/ui-rich-text": "0.0.
|
|
151
|
-
"@tutti-os/ui-system": "0.0.
|
|
152
|
-
"@tutti-os/workbench-surface": "0.0.
|
|
153
|
-
"@tutti-os/workspace-external-core": "0.0.
|
|
154
|
-
"@tutti-os/workspace-file-manager": "0.0.
|
|
155
|
-
"@tutti-os/workspace-file-preview": "0.0.
|
|
156
|
-
"@tutti-os/workspace-file-reference": "0.0.
|
|
157
|
-
"@tutti-os/workspace-issue-manager": "0.0.
|
|
158
|
-
"@tutti-os/workspace-user-project": "0.0.
|
|
146
|
+
"@tutti-os/agent-activity-core": "0.0.189",
|
|
147
|
+
"@tutti-os/browser-node": "0.0.189",
|
|
148
|
+
"@tutti-os/ui-i18n-runtime": "0.0.189",
|
|
149
|
+
"@tutti-os/ui-react-hooks": "0.0.189",
|
|
150
|
+
"@tutti-os/ui-rich-text": "0.0.189",
|
|
151
|
+
"@tutti-os/ui-system": "0.0.189",
|
|
152
|
+
"@tutti-os/workbench-surface": "0.0.189",
|
|
153
|
+
"@tutti-os/workspace-external-core": "0.0.189",
|
|
154
|
+
"@tutti-os/workspace-file-manager": "0.0.189",
|
|
155
|
+
"@tutti-os/workspace-file-preview": "0.0.189",
|
|
156
|
+
"@tutti-os/workspace-file-reference": "0.0.189",
|
|
157
|
+
"@tutti-os/workspace-issue-manager": "0.0.189",
|
|
158
|
+
"@tutti-os/workspace-user-project": "0.0.189",
|
|
159
159
|
"clsx": "^2.1.1",
|
|
160
160
|
"framer-motion": "^12.40.0",
|
|
161
161
|
"lodash": "^4.17.21",
|