@tutti-os/agent-gui 0.0.37 → 0.0.39
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/{AgentMessageMarkdown-Fv7I0HUN.d.ts → AgentMessageMarkdown-BVeh06AJ.d.ts} +5 -0
- package/dist/agent-conversation/index.d.ts +1 -1
- package/dist/agent-conversation/index.js +5 -5
- package/dist/agent-message-center/index.d.ts +1 -0
- package/dist/agent-message-center/index.js +231 -15
- package/dist/agent-message-center/index.js.map +1 -1
- package/dist/app/renderer/agentactivity.css +67 -0
- package/dist/{chunk-5YJPISWJ.js → chunk-3AXEEQMV.js} +24 -7
- package/dist/chunk-3AXEEQMV.js.map +1 -0
- package/dist/{chunk-BQNHPMQY.js → chunk-46IYJEZX.js} +98 -5
- package/dist/chunk-46IYJEZX.js.map +1 -0
- package/dist/{chunk-UHQDBXGH.js → chunk-5HQDW73P.js} +497 -233
- package/dist/chunk-5HQDW73P.js.map +1 -0
- package/dist/{chunk-2ADVHCST.js → chunk-B2JKDZSR.js} +1 -1
- package/dist/{chunk-2ADVHCST.js.map → chunk-B2JKDZSR.js.map} +1 -1
- package/dist/{chunk-MKSRP5XS.js → chunk-C7ZZZXKB.js} +5 -5
- package/dist/{chunk-XROBPALT.js → chunk-RE3AHBX6.js} +2 -2
- package/dist/{chunk-JL2WNRYC.js → chunk-WJPEKD3F.js} +17 -1
- package/dist/chunk-WJPEKD3F.js.map +1 -0
- package/dist/{chunk-NCS7X3XY.js → chunk-XL2EKJTQ.js} +15 -3
- package/dist/chunk-XL2EKJTQ.js.map +1 -0
- package/dist/{chunk-WHWZZYBV.js → chunk-Y2DQJPTL.js} +2 -2
- package/dist/{chunk-SXHVKUUI.js → chunk-Y5SE2XMU.js} +72 -15
- package/dist/chunk-Y5SE2XMU.js.map +1 -0
- package/dist/{chunk-MUZMBEFO.js → chunk-ZWJBG2JM.js} +21 -2
- package/dist/chunk-ZWJBG2JM.js.map +1 -0
- package/dist/context-mention-palette/index.js +6 -6
- package/dist/i18n/index.d.ts +16 -0
- package/dist/i18n/index.js +1 -1
- package/dist/index.d.ts +5 -3
- package/dist/index.js +2163 -998
- package/dist/index.js.map +1 -1
- package/dist/workbench/contribution.js +2 -2
- package/dist/workbench/index.d.ts +2 -1
- package/dist/workbench/index.js +2 -2
- package/dist/workbench/state.d.ts +6 -0
- package/dist/workbench/state.js +1 -1
- package/dist/workspace-agent-generated-files.js +2 -2
- package/package.json +13 -12
- package/dist/chunk-5YJPISWJ.js.map +0 -1
- package/dist/chunk-BQNHPMQY.js.map +0 -1
- package/dist/chunk-JL2WNRYC.js.map +0 -1
- package/dist/chunk-MUZMBEFO.js.map +0 -1
- package/dist/chunk-NCS7X3XY.js.map +0 -1
- package/dist/chunk-SXHVKUUI.js.map +0 -1
- package/dist/chunk-UHQDBXGH.js.map +0 -1
- /package/dist/{chunk-MKSRP5XS.js.map → chunk-C7ZZZXKB.js.map} +0 -0
- /package/dist/{chunk-XROBPALT.js.map → chunk-RE3AHBX6.js.map} +0 -0
- /package/dist/{chunk-WHWZZYBV.js.map → chunk-Y2DQJPTL.js.map} +0 -0
|
@@ -8,9 +8,9 @@ import {
|
|
|
8
8
|
createAgentGuiWorkbenchContribution,
|
|
9
9
|
resolveAgentGuiWorkbenchContributionCopy,
|
|
10
10
|
resolveAgentGuiWorkbenchDefaultLaunchFrame
|
|
11
|
-
} from "../chunk-
|
|
11
|
+
} from "../chunk-XL2EKJTQ.js";
|
|
12
12
|
import "../chunk-JNGYJ7GM.js";
|
|
13
|
-
import "../chunk-
|
|
13
|
+
import "../chunk-ZWJBG2JM.js";
|
|
14
14
|
import "../chunk-22L4VWUR.js";
|
|
15
15
|
import "../chunk-IXIGWLQY.js";
|
|
16
16
|
import "../chunk-Q75AK47T.js";
|
|
@@ -18,10 +18,11 @@ interface AgentGuiWorkbenchHeaderProps extends HTMLAttributes<HTMLElement> {
|
|
|
18
18
|
isConversationRailAutoCollapsed: boolean;
|
|
19
19
|
isConversationRailCollapsed: boolean;
|
|
20
20
|
conversationTitle?: string | null;
|
|
21
|
+
iconUrl?: string | null;
|
|
21
22
|
onCreateConversation?: () => void;
|
|
22
23
|
onToggleConversationRail: (nextCollapsed: boolean) => void;
|
|
23
24
|
title?: string;
|
|
24
25
|
}
|
|
25
|
-
declare function AgentGuiWorkbenchHeader({ className, copy, defaultActions, isConversationRailAutoCollapsed, isConversationRailCollapsed, conversationTitle, onCreateConversation, onToggleConversationRail, title, ...headerProps }: AgentGuiWorkbenchHeaderProps): ReactNode;
|
|
26
|
+
declare function AgentGuiWorkbenchHeader({ className, copy, defaultActions, isConversationRailAutoCollapsed, isConversationRailCollapsed, conversationTitle, iconUrl, onCreateConversation, onToggleConversationRail, title, ...headerProps }: AgentGuiWorkbenchHeaderProps): ReactNode;
|
|
26
27
|
|
|
27
28
|
export { AgentGuiWorkbenchHeader, type AgentGuiWorkbenchHeaderCopy, type AgentGuiWorkbenchHeaderProps };
|
package/dist/workbench/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
agentGuiWorkbenchDefaultNodeFrame,
|
|
7
7
|
createAgentGuiWorkbenchContribution,
|
|
8
8
|
resolveAgentGuiWorkbenchContributionCopy
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-XL2EKJTQ.js";
|
|
10
10
|
import {
|
|
11
11
|
agentGuiWorkbenchDockEntryId,
|
|
12
12
|
agentGuiWorkbenchInstanceId,
|
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
normalizeAgentGuiWorkbenchNodeState,
|
|
28
28
|
normalizeAgentGuiWorkbenchState,
|
|
29
29
|
projectAgentGuiWorkbenchState
|
|
30
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-ZWJBG2JM.js";
|
|
31
31
|
import {
|
|
32
32
|
agentGuiWorkbenchComingSoonProviders,
|
|
33
33
|
agentGuiWorkbenchDefaultDockProviders,
|
|
@@ -18,6 +18,12 @@ declare function createAgentGuiWorkbenchNodeStateSource(input: {
|
|
|
18
18
|
writeNodeState: (request: AgentGuiWorkbenchStateLookupRequest & {
|
|
19
19
|
state: AgentGuiWorkbenchState;
|
|
20
20
|
}) => void;
|
|
21
|
+
/**
|
|
22
|
+
* Returns the launch instanceId of an open node currently showing the given
|
|
23
|
+
* agent session, or null when none is found. Used to focus an existing
|
|
24
|
+
* conversation instead of launching a duplicate node.
|
|
25
|
+
*/
|
|
26
|
+
findInstanceIdByAgentSessionId: (agentSessionId: string) => string | null;
|
|
21
27
|
};
|
|
22
28
|
|
|
23
29
|
export { agentGuiWorkbenchProviderFromInstanceId, areAgentGuiWorkbenchNodeStatesEqual, areAgentGuiWorkbenchStatesEqual, createAgentGuiWorkbenchNodeStateSource, createDefaultAgentGuiWorkbenchNodeState, normalizeAgentGuiWorkbenchNodeState, normalizeAgentGuiWorkbenchState, projectAgentGuiWorkbenchState };
|
package/dist/workbench/state.js
CHANGED
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
normalizeAgentGuiWorkbenchNodeState,
|
|
8
8
|
normalizeAgentGuiWorkbenchState,
|
|
9
9
|
projectAgentGuiWorkbenchState
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-ZWJBG2JM.js";
|
|
11
11
|
import "../chunk-22L4VWUR.js";
|
|
12
12
|
export {
|
|
13
13
|
agentGuiWorkbenchProviderFromInstanceId,
|
|
@@ -4,14 +4,14 @@ import {
|
|
|
4
4
|
resolveWorkspaceAgentActivityStatus,
|
|
5
5
|
resolveWorkspaceAgentActivityTitle,
|
|
6
6
|
reuseWorkspaceAgentActivityListViewModelIfUnchanged
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-Y5SE2XMU.js";
|
|
8
8
|
import "./chunk-IBIMGLCD.js";
|
|
9
9
|
import "./chunk-Y35GDLP2.js";
|
|
10
10
|
import {
|
|
11
11
|
workspaceAgentProviderLabel
|
|
12
12
|
} from "./chunk-TYGL25EL.js";
|
|
13
13
|
import "./chunk-GCBDIQDX.js";
|
|
14
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-WJPEKD3F.js";
|
|
15
15
|
export {
|
|
16
16
|
buildWorkspaceAgentActivityListViewModel,
|
|
17
17
|
collectWorkspaceAgentGeneratedFiles,
|
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.39",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -82,17 +82,17 @@
|
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
84
|
"@monaco-editor/react": "^4.7.0",
|
|
85
|
-
"@tutti-os/agent-activity-core": "0.0.
|
|
86
|
-
"@tutti-os/ui-i18n-runtime": "0.0.
|
|
87
|
-
"@tutti-os/ui-rich-text": "0.0.
|
|
88
|
-
"@tutti-os/ui-react-hooks": "0.0.
|
|
89
|
-
"@tutti-os/ui-system": "0.0.
|
|
90
|
-
"@tutti-os/workbench-surface": "0.0.
|
|
91
|
-
"@tutti-os/workspace-external-core": "0.0.
|
|
92
|
-
"@tutti-os/workspace-file-manager": "0.0.
|
|
93
|
-
"@tutti-os/workspace-file-reference": "0.0.
|
|
94
|
-
"@tutti-os/workspace-issue-manager": "0.0.
|
|
95
|
-
"@tutti-os/workspace-user-project": "0.0.
|
|
85
|
+
"@tutti-os/agent-activity-core": "0.0.39",
|
|
86
|
+
"@tutti-os/ui-i18n-runtime": "0.0.39",
|
|
87
|
+
"@tutti-os/ui-rich-text": "0.0.39",
|
|
88
|
+
"@tutti-os/ui-react-hooks": "0.0.39",
|
|
89
|
+
"@tutti-os/ui-system": "0.0.39",
|
|
90
|
+
"@tutti-os/workbench-surface": "0.0.39",
|
|
91
|
+
"@tutti-os/workspace-external-core": "0.0.39",
|
|
92
|
+
"@tutti-os/workspace-file-manager": "0.0.39",
|
|
93
|
+
"@tutti-os/workspace-file-reference": "0.0.39",
|
|
94
|
+
"@tutti-os/workspace-issue-manager": "0.0.39",
|
|
95
|
+
"@tutti-os/workspace-user-project": "0.0.39",
|
|
96
96
|
"@tanstack/react-virtual": "^3.13.12",
|
|
97
97
|
"@tiptap/core": "^3.11.1",
|
|
98
98
|
"@tiptap/pm": "^3.23.6",
|
|
@@ -123,6 +123,7 @@
|
|
|
123
123
|
"typescript": "^5.8.3",
|
|
124
124
|
"vite": "^6.4.2",
|
|
125
125
|
"vitest": "^4.0.13",
|
|
126
|
+
"@tutti-os/client-tuttid-ts": "0.0.0",
|
|
126
127
|
"@tutti-os/config-tsconfig": "0.0.0"
|
|
127
128
|
},
|
|
128
129
|
"peerDependencies": {
|