@tutti-os/agent-gui 0.0.11 → 0.0.12
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.js +3 -3
- package/dist/agent-message-center/index.js +5 -3
- package/dist/agent-message-center/index.js.map +1 -1
- package/dist/agent-rich-text-at-provider.d.ts +1 -15
- package/dist/agent-rich-text-at-provider.js +1 -1
- package/dist/app/renderer/agentactivity.css +25 -0
- package/dist/{chunk-ZEFETOTS.js → chunk-72YSPOHX.js} +84 -87
- package/dist/chunk-72YSPOHX.js.map +1 -0
- package/dist/{chunk-77HBKGHF.js → chunk-KCC3GNPB.js} +1 -1
- package/dist/chunk-KCC3GNPB.js.map +1 -0
- package/dist/{chunk-ITMKZRCT.js → chunk-PKCJR6GC.js} +3 -3
- package/dist/chunk-PKCJR6GC.js.map +1 -0
- package/dist/{chunk-QTZALZIV.js → chunk-PONEQEJ5.js} +5 -29
- package/dist/{chunk-QTZALZIV.js.map → chunk-PONEQEJ5.js.map} +1 -1
- package/dist/{chunk-B7K776UD.js → chunk-Y3AQGWJA.js} +9 -1
- package/dist/chunk-Y3AQGWJA.js.map +1 -0
- package/dist/{chunk-CGBRAWTD.js → chunk-Y5O7BVGU.js} +3 -3
- package/dist/i18n/index.d.ts +8 -0
- package/dist/i18n/index.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1141 -923
- package/dist/index.js.map +1 -1
- package/dist/workspace-agent-generated-files.js +2 -2
- package/package.json +10 -10
- package/dist/chunk-77HBKGHF.js.map +0 -1
- package/dist/chunk-B7K776UD.js.map +0 -1
- package/dist/chunk-ITMKZRCT.js.map +0 -1
- package/dist/chunk-ZEFETOTS.js.map +0 -1
- /package/dist/{chunk-CGBRAWTD.js.map → chunk-Y5O7BVGU.js.map} +0 -0
|
@@ -6,13 +6,13 @@ import {
|
|
|
6
6
|
projectAgentConversationVM,
|
|
7
7
|
reconcileProjectedAgentConversationVM,
|
|
8
8
|
useProjectedAgentConversation
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-72YSPOHX.js";
|
|
10
10
|
import "../chunk-XJ34OIEQ.js";
|
|
11
|
-
import "../chunk-
|
|
11
|
+
import "../chunk-PONEQEJ5.js";
|
|
12
12
|
import "../chunk-TYGL25EL.js";
|
|
13
13
|
import {
|
|
14
14
|
translate
|
|
15
|
-
} from "../chunk-
|
|
15
|
+
} from "../chunk-Y3AQGWJA.js";
|
|
16
16
|
import "../chunk-LUGELG5V.js";
|
|
17
17
|
import "../chunk-PJP5BUU6.js";
|
|
18
18
|
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
managedAgentRoundedIconUrl,
|
|
7
7
|
user_avatar_placeholder_default,
|
|
8
8
|
workspaceAgentActivityStatusLabel
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-Y5O7BVGU.js";
|
|
10
10
|
import "../chunk-4ASBZ4X7.js";
|
|
11
11
|
import {
|
|
12
12
|
resolveWorkspaceAgentSessionSortTimeUnixMs
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
cn,
|
|
18
18
|
extractAgentMcpToolTarget,
|
|
19
19
|
normalizeAskUserQuestions
|
|
20
|
-
} from "../chunk-
|
|
20
|
+
} from "../chunk-PONEQEJ5.js";
|
|
21
21
|
import {
|
|
22
22
|
workspaceAgentProviderLabel
|
|
23
23
|
} from "../chunk-TYGL25EL.js";
|
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
import {
|
|
28
28
|
AgentGuiI18nProvider,
|
|
29
29
|
useTranslation
|
|
30
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-Y3AQGWJA.js";
|
|
31
31
|
import "../chunk-PJP5BUU6.js";
|
|
32
32
|
import {
|
|
33
33
|
PLAN_IMPLEMENTATION_ACTION_IMPLEMENT,
|
|
@@ -218,6 +218,7 @@ function meaningfulMessageSummary(message) {
|
|
|
218
218
|
function messageSummaryCandidates(message) {
|
|
219
219
|
const explicitCandidates = [
|
|
220
220
|
summaryCandidate("payload.summary", message.payload.summary),
|
|
221
|
+
summaryCandidate("payload.displayPrompt", message.payload.displayPrompt),
|
|
221
222
|
summaryCandidate("payload.text", message.payload.text),
|
|
222
223
|
summaryCandidate("payload.content", message.payload.content),
|
|
223
224
|
summaryCandidate("payload.message", message.payload.message),
|
|
@@ -892,6 +893,7 @@ function includesAny2(value, needles) {
|
|
|
892
893
|
function messageSummary(message) {
|
|
893
894
|
return firstNonEmptyString2(
|
|
894
895
|
stringValue2(message.payload.summary),
|
|
896
|
+
stringValue2(message.payload.displayPrompt),
|
|
895
897
|
stringValue2(message.payload.text),
|
|
896
898
|
stringValue2(message.payload.content),
|
|
897
899
|
stringValue2(message.payload.message),
|