@tutti-os/agent-gui 0.0.90 → 0.0.91
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 +7 -0
- package/dist/agent-conversation/index.d.ts +2 -2
- package/dist/agent-conversation/index.js +1 -1
- package/dist/{agentGuiNodeTypes-D4mk1Nr3.d.ts → agentGuiNodeTypes-rGaDqxVR.d.ts} +5 -5
- package/dist/app/renderer/agentactivity.css +25 -8
- package/dist/{chunk-KTXWPKGP.js → chunk-7QHBFRG5.js} +1 -1
- package/dist/chunk-7QHBFRG5.js.map +1 -0
- package/dist/{chunk-P7RX2NSY.js → chunk-M2LWH54R.js} +1 -1
- package/dist/{chunk-P7RX2NSY.js.map → chunk-M2LWH54R.js.map} +1 -1
- package/dist/index.d.ts +8 -8
- package/dist/index.js +482 -477
- package/dist/index.js.map +1 -1
- package/dist/queued-prompt-runtime.d.ts +2 -2
- package/dist/{types-BvztUbHf.d.ts → types-PLFZ8SBX.d.ts} +6 -6
- package/dist/workbench/contribution.d.ts +1 -1
- package/dist/workbench/contribution.js +1 -1
- package/dist/workbench/index.d.ts +1 -1
- package/dist/workbench/index.js +1 -1
- package/package.json +12 -12
- package/dist/chunk-KTXWPKGP.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { f as AgentGUIQueuedPromptVM } from './agentGuiNodeTypes-
|
|
1
|
+
import { f as AgentGUIQueuedPromptVM } from './agentGuiNodeTypes-rGaDqxVR.js';
|
|
2
2
|
import '@tutti-os/agent-activity-core';
|
|
3
|
-
import './types-
|
|
3
|
+
import './types-PLFZ8SBX.js';
|
|
4
4
|
import './workspaceAgentActivityListViewModel-TXH1VXrk.js';
|
|
5
5
|
import './agentConversationVM-CfXN_TQ2.js';
|
|
6
6
|
import '@tutti-os/workspace-user-project/contracts';
|
|
@@ -174,24 +174,24 @@ interface AgentGUIAgent {
|
|
|
174
174
|
interface AgentGUIAllAgentsPresentation {
|
|
175
175
|
iconUrl?: string | null;
|
|
176
176
|
}
|
|
177
|
-
interface
|
|
177
|
+
interface AgentGUIAgentTargetRef {
|
|
178
178
|
kind: string;
|
|
179
179
|
provider: AgentGUIProvider;
|
|
180
180
|
[key: string]: unknown;
|
|
181
181
|
}
|
|
182
|
-
interface
|
|
182
|
+
interface AgentGUIAgentTargetBadge {
|
|
183
183
|
iconUrl: string;
|
|
184
184
|
label?: string;
|
|
185
185
|
}
|
|
186
|
-
interface
|
|
186
|
+
interface AgentGUIAgentTarget {
|
|
187
187
|
targetId: string;
|
|
188
188
|
agentTargetId?: string | null;
|
|
189
189
|
provider: AgentGUIProvider;
|
|
190
|
-
ref:
|
|
190
|
+
ref: AgentGUIAgentTargetRef;
|
|
191
191
|
label: string;
|
|
192
192
|
description?: string;
|
|
193
193
|
iconUrl?: string | null;
|
|
194
|
-
badge?:
|
|
194
|
+
badge?: AgentGUIAgentTargetBadge | null;
|
|
195
195
|
ownerLabel?: string;
|
|
196
196
|
disabled?: boolean;
|
|
197
197
|
unavailableReason?: string;
|
|
@@ -216,4 +216,4 @@ interface NodeFrame {
|
|
|
216
216
|
size: Size;
|
|
217
217
|
}
|
|
218
218
|
|
|
219
|
-
export type { AgentGUIAgent as A, NodeFrame as N, Point as P, AgentGUIAgentAvailability as a, AgentGUIAgentAvailabilityAction as b, AgentGUIAgentAvailabilityStatus as c, AgentGUIAgentOwner as d,
|
|
219
|
+
export type { AgentGUIAgent as A, NodeFrame as N, Point as P, AgentGUIAgentAvailability as a, AgentGUIAgentAvailabilityAction as b, AgentGUIAgentAvailabilityStatus as c, AgentGUIAgentOwner as d, AgentGUIAgentTarget as e, AgentGUIAllAgentsPresentation as f, AgentGUINodeData as g, AgentGUIProvider as h, AgentGUIProviderReadinessGate as i, AgentHostActivateAgentSessionResult as j, AgentHostAgentSessionCommand as k, AgentHostAgentSessionComposerSettings as l, AgentHostAgentSessionPermissionConfig as m, AgentHostAgentSessionReasoningEffort as n, AgentHostAgentSessionSpeed as o, AgentHostAgentSessionState as p, AgentHostUnactivateAgentSessionResult as q, AgentHostUpdateAgentSessionSettingsResult as r, AgentPromptContentBlock as s, AgentProvider as t };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { WorkbenchFrame, WorkbenchHostNodeBodyContext, WorkbenchHostLaunchRequest, WorkbenchHostDockEntry, WorkbenchContribution } from '@tutti-os/workbench-surface';
|
|
3
3
|
import { AgentGuiWorkbenchProvider, AgentGuiWorkbenchState } from './types.js';
|
|
4
|
-
import { A as AgentGUIAgent } from '../types-
|
|
4
|
+
import { A as AgentGUIAgent } from '../types-PLFZ8SBX.js';
|
|
5
5
|
|
|
6
6
|
declare const agentGuiWorkbenchDefaultNodeFrame: WorkbenchFrame;
|
|
7
7
|
declare const agentGuiWorkbenchDefaultUsableWidthRatio = 0.8;
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
resolveAgentGuiUnifiedDockLaunchPayload,
|
|
15
15
|
resolveAgentGuiWorkbenchContributionCopy,
|
|
16
16
|
resolveAgentGuiWorkbenchDefaultLaunchFrame
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-M2LWH54R.js";
|
|
18
18
|
import "../chunk-45FF4DQU.js";
|
|
19
19
|
import "../chunk-7LMJXF4R.js";
|
|
20
20
|
import "../chunk-GAPTLVII.js";
|
|
@@ -6,7 +6,7 @@ import { HTMLAttributes, ReactNode } from 'react';
|
|
|
6
6
|
import { WorkbenchDisplayMode, WorkbenchHostNodeHeaderWindowActions } from '@tutti-os/workbench-surface';
|
|
7
7
|
export { AgentGuiSessionTitleFormatOptions, AgentGuiWorkbenchSessionTitleResult, ResolveAgentGuiWorkbenchSessionTitleInput, formatAgentGuiConversationPlainTitle, formatAgentGuiSessionPlainTitle, resolveAgentGuiWorkbenchSessionTitle } from './sessionTitle.js';
|
|
8
8
|
export { AgentGuiWorkbenchComposerOverrides, AgentGuiWorkbenchNodeState, AgentGuiWorkbenchPrefillPromptPayload, AgentGuiWorkbenchProvider, AgentGuiWorkbenchState, AgentGuiWorkbenchWorkspaceState, agentGuiWorkbenchOpenSessionActivationType, agentGuiWorkbenchPrefillPromptActivationType } from './types.js';
|
|
9
|
-
import '../types-
|
|
9
|
+
import '../types-PLFZ8SBX.js';
|
|
10
10
|
import '@tutti-os/agent-activity-core';
|
|
11
11
|
import '../uiSettings-BQS9r2eo.js';
|
|
12
12
|
|
package/dist/workbench/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
createAgentGuiWorkbenchContribution,
|
|
9
9
|
resolveAgentGuiUnifiedDockLaunchPayload,
|
|
10
10
|
resolveAgentGuiWorkbenchContributionCopy
|
|
11
|
-
} from "../chunk-
|
|
11
|
+
} from "../chunk-M2LWH54R.js";
|
|
12
12
|
import {
|
|
13
13
|
agentGuiWorkbenchProviderFromInstanceId,
|
|
14
14
|
areAgentGuiWorkbenchNodeStatesEqual,
|
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.91",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -100,17 +100,17 @@
|
|
|
100
100
|
"@tiptap/react": "^3.11.1",
|
|
101
101
|
"@tiptap/starter-kit": "^3.11.1",
|
|
102
102
|
"@tiptap/suggestion": "^3.11.1",
|
|
103
|
-
"@tutti-os/agent-activity-core": "0.0.
|
|
104
|
-
"@tutti-os/ui-i18n-runtime": "0.0.
|
|
105
|
-
"@tutti-os/ui-react-hooks": "0.0.
|
|
106
|
-
"@tutti-os/ui-rich-text": "0.0.
|
|
107
|
-
"@tutti-os/ui-system": "0.0.
|
|
108
|
-
"@tutti-os/workbench-surface": "0.0.
|
|
109
|
-
"@tutti-os/workspace-external-core": "0.0.
|
|
110
|
-
"@tutti-os/workspace-file-manager": "0.0.
|
|
111
|
-
"@tutti-os/workspace-file-reference": "0.0.
|
|
112
|
-
"@tutti-os/workspace-issue-manager": "0.0.
|
|
113
|
-
"@tutti-os/workspace-user-project": "0.0.
|
|
103
|
+
"@tutti-os/agent-activity-core": "0.0.91",
|
|
104
|
+
"@tutti-os/ui-i18n-runtime": "0.0.91",
|
|
105
|
+
"@tutti-os/ui-react-hooks": "0.0.91",
|
|
106
|
+
"@tutti-os/ui-rich-text": "0.0.91",
|
|
107
|
+
"@tutti-os/ui-system": "0.0.91",
|
|
108
|
+
"@tutti-os/workbench-surface": "0.0.91",
|
|
109
|
+
"@tutti-os/workspace-external-core": "0.0.91",
|
|
110
|
+
"@tutti-os/workspace-file-manager": "0.0.91",
|
|
111
|
+
"@tutti-os/workspace-file-reference": "0.0.91",
|
|
112
|
+
"@tutti-os/workspace-issue-manager": "0.0.91",
|
|
113
|
+
"@tutti-os/workspace-user-project": "0.0.91",
|
|
114
114
|
"clsx": "^2.1.1",
|
|
115
115
|
"framer-motion": "^12.40.0",
|
|
116
116
|
"lodash": "^4.17.21",
|