@tutti-os/agent-gui 0.0.16 → 0.0.18
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 +1 -1
- package/dist/agent-conversation/index.js +4 -4
- package/dist/agent-message-center/index.d.ts +5 -2
- package/dist/agent-message-center/index.js +172 -9
- package/dist/agent-message-center/index.js.map +1 -1
- package/dist/app/renderer/agentactivity.css +32 -0
- package/dist/{chunk-LWRYYGPZ.js → chunk-4RUK7VPA.js} +4 -4
- package/dist/{chunk-KWPL3JYS.js → chunk-5Z5HILKT.js} +2 -2
- package/dist/{chunk-CABHBFYH.js → chunk-B7DTDZVT.js} +2 -2
- package/dist/{chunk-267VY3EJ.js → chunk-DT4W5Z2A.js} +4 -4
- package/dist/{chunk-EKATXC3W.js → chunk-F7XLV7M3.js} +2 -2
- package/dist/{chunk-LW2S255I.js → chunk-FEWMACBN.js} +4 -4
- package/dist/{chunk-SIDWRR5I.js → chunk-GLDKFIWM.js} +11 -3
- package/dist/chunk-GLDKFIWM.js.map +1 -0
- package/dist/{chunk-FJYH2ZPX.js → chunk-S5GS4GRM.js} +2 -2
- package/dist/chunk-S5GS4GRM.js.map +1 -0
- package/dist/{chunk-GWR6WGZY.js → chunk-XHJQNUH4.js} +41 -28
- package/dist/chunk-XHJQNUH4.js.map +1 -0
- package/dist/context-mention-palette/index.js +5 -5
- package/dist/i18n/index.d.ts +10 -2
- package/dist/i18n/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +249 -66
- package/dist/index.js.map +1 -1
- package/dist/workbench/contribution.d.ts +1 -0
- package/dist/workbench/contribution.js +1 -1
- package/dist/workbench/index.js +1 -1
- package/dist/workspace-agent-generated-files.js +2 -2
- package/dist/{workspaceLinkActions-Mjktl_Be.d.ts → workspaceLinkActions-CqWZaCY4.d.ts} +1 -0
- package/package.json +12 -12
- package/dist/chunk-FJYH2ZPX.js.map +0 -1
- package/dist/chunk-GWR6WGZY.js.map +0 -1
- package/dist/chunk-SIDWRR5I.js.map +0 -1
- /package/dist/{chunk-LWRYYGPZ.js.map → chunk-4RUK7VPA.js.map} +0 -0
- /package/dist/{chunk-KWPL3JYS.js.map → chunk-5Z5HILKT.js.map} +0 -0
- /package/dist/{chunk-CABHBFYH.js.map → chunk-B7DTDZVT.js.map} +0 -0
- /package/dist/{chunk-267VY3EJ.js.map → chunk-DT4W5Z2A.js.map} +0 -0
- /package/dist/{chunk-EKATXC3W.js.map → chunk-F7XLV7M3.js.map} +0 -0
- /package/dist/{chunk-LW2S255I.js.map → chunk-FEWMACBN.js.map} +0 -0
|
@@ -4517,6 +4517,38 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4517
4517
|
gap: 2px;
|
|
4518
4518
|
}
|
|
4519
4519
|
|
|
4520
|
+
.agent-gui-node__conversation-section-pagination {
|
|
4521
|
+
display: flex;
|
|
4522
|
+
flex-wrap: wrap;
|
|
4523
|
+
gap: 6px;
|
|
4524
|
+
align-items: center;
|
|
4525
|
+
min-width: 0;
|
|
4526
|
+
padding: 2px 6px 0 22px;
|
|
4527
|
+
}
|
|
4528
|
+
|
|
4529
|
+
.agent-gui-node__conversation-section-pagination-button {
|
|
4530
|
+
min-width: 0;
|
|
4531
|
+
border: 0;
|
|
4532
|
+
border-radius: 4px;
|
|
4533
|
+
background: transparent;
|
|
4534
|
+
color: var(--text-tertiary);
|
|
4535
|
+
cursor: pointer;
|
|
4536
|
+
font: inherit;
|
|
4537
|
+
font-size: 12px;
|
|
4538
|
+
line-height: 18px;
|
|
4539
|
+
padding: 1px 4px;
|
|
4540
|
+
text-align: left;
|
|
4541
|
+
transition:
|
|
4542
|
+
background-color 140ms ease,
|
|
4543
|
+
color 140ms ease;
|
|
4544
|
+
}
|
|
4545
|
+
|
|
4546
|
+
.agent-gui-node__conversation-section-pagination-button:hover,
|
|
4547
|
+
.agent-gui-node__conversation-section-pagination-button:focus-visible {
|
|
4548
|
+
background-color: var(--agent-gui-surface-hover);
|
|
4549
|
+
color: var(--text-primary);
|
|
4550
|
+
}
|
|
4551
|
+
|
|
4520
4552
|
@media (prefers-reduced-motion: reduce) {
|
|
4521
4553
|
.agent-gui-node__conversation-section-items {
|
|
4522
4554
|
transition: none;
|
|
@@ -3,14 +3,14 @@ import {
|
|
|
3
3
|
managedAgentRoundedIconUrl,
|
|
4
4
|
userAvatarPlaceholderUrl,
|
|
5
5
|
workspaceAgentActivityStatusLabel
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-F7XLV7M3.js";
|
|
7
7
|
import {
|
|
8
8
|
buildAgentGenericMentionHref,
|
|
9
9
|
buildAgentSessionMentionHref,
|
|
10
10
|
buildAgentWorkspaceAppMentionHref,
|
|
11
11
|
buildAgentWorkspaceIssueMentionHref,
|
|
12
12
|
normalizeAgentSessionMentionTitle
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-5Z5HILKT.js";
|
|
14
14
|
import {
|
|
15
15
|
getOptionalAgentHostApi
|
|
16
16
|
} from "./chunk-O5TUTXHT.js";
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
} from "./chunk-HIREVEZM.js";
|
|
20
20
|
import {
|
|
21
21
|
translate
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-GLDKFIWM.js";
|
|
23
23
|
import {
|
|
24
24
|
resolveAgentMentionFileThumbnailUrl,
|
|
25
25
|
resolveAgentMentionFileVisualKind
|
|
@@ -2120,4 +2120,4 @@ export {
|
|
|
2120
2120
|
AgentFileMentionPalette,
|
|
2121
2121
|
AgentContextMentionPalette
|
|
2122
2122
|
};
|
|
2123
|
-
//# sourceMappingURL=chunk-
|
|
2123
|
+
//# sourceMappingURL=chunk-4RUK7VPA.js.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
translate,
|
|
3
3
|
useTranslation
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-GLDKFIWM.js";
|
|
5
5
|
import {
|
|
6
6
|
resolveAgentMentionFileThumbnailUrl,
|
|
7
7
|
resolveAgentMentionFileVisualKind
|
|
@@ -1326,4 +1326,4 @@ export {
|
|
|
1326
1326
|
attrsToMentionItem,
|
|
1327
1327
|
buildAgentGenericMentionHref2 as buildAgentGenericMentionHref
|
|
1328
1328
|
};
|
|
1329
|
-
//# sourceMappingURL=chunk-
|
|
1329
|
+
//# sourceMappingURL=chunk-5Z5HILKT.js.map
|
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
import {
|
|
14
14
|
translate,
|
|
15
15
|
translateInUiLanguage
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-GLDKFIWM.js";
|
|
17
17
|
|
|
18
18
|
// shared/workspaceAgentStatusNormalizer.ts
|
|
19
19
|
var FAILED_STATUS_TOKENS = /* @__PURE__ */ new Set(["failed", "error"]);
|
|
@@ -915,4 +915,4 @@ export {
|
|
|
915
915
|
resolveWorkspaceAgentActivityStatus,
|
|
916
916
|
resolveWorkspaceAgentActivityTitle
|
|
917
917
|
};
|
|
918
|
-
//# sourceMappingURL=chunk-
|
|
918
|
+
//# sourceMappingURL=chunk-B7DTDZVT.js.map
|
|
@@ -10,14 +10,14 @@ import {
|
|
|
10
10
|
resolveWorkspaceFileLinkAction,
|
|
11
11
|
resolveWorkspaceFilePathCandidate,
|
|
12
12
|
resolveWorkspaceLinkAction
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-S5GS4GRM.js";
|
|
14
14
|
import {
|
|
15
15
|
attrsToMentionItem,
|
|
16
16
|
createAgentFileMentionExtension,
|
|
17
17
|
formatAgentMentionMarkdown,
|
|
18
18
|
mentionItemToAttrs,
|
|
19
19
|
parseAgentMentionMarkdown
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-5Z5HILKT.js";
|
|
21
21
|
import {
|
|
22
22
|
isWorkspaceAgentSyntheticControlMessage
|
|
23
23
|
} from "./chunk-XJ34OIEQ.js";
|
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
} from "./chunk-TYGL25EL.js";
|
|
31
31
|
import {
|
|
32
32
|
translate
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-GLDKFIWM.js";
|
|
34
34
|
|
|
35
35
|
// shared/imageGenerationTool.ts
|
|
36
36
|
var KNOWN_IMAGE_GENERATION_TOOL_NAMES = /* @__PURE__ */ new Set([
|
|
@@ -12085,4 +12085,4 @@ export {
|
|
|
12085
12085
|
AgentConversationFlow,
|
|
12086
12086
|
useProjectedAgentConversation
|
|
12087
12087
|
};
|
|
12088
|
-
//# sourceMappingURL=chunk-
|
|
12088
|
+
//# sourceMappingURL=chunk-DT4W5Z2A.js.map
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
} from "./chunk-MTFSQWZ6.js";
|
|
15
15
|
import {
|
|
16
16
|
translate
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-GLDKFIWM.js";
|
|
18
18
|
|
|
19
19
|
// shared/managedAgentProviders.ts
|
|
20
20
|
function normalizeManagedAgentProvider(provider) {
|
|
@@ -113,4 +113,4 @@ export {
|
|
|
113
113
|
userAvatarPlaceholderUrl,
|
|
114
114
|
workspaceAgentActivityStatusLabel
|
|
115
115
|
};
|
|
116
|
-
//# sourceMappingURL=chunk-
|
|
116
|
+
//# sourceMappingURL=chunk-F7XLV7M3.js.map
|
|
@@ -7,17 +7,17 @@ import {
|
|
|
7
7
|
AgentGUIConversation_styles_default,
|
|
8
8
|
MessageSquareMoreIcon,
|
|
9
9
|
extractAgentMcpToolTarget
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-S5GS4GRM.js";
|
|
11
11
|
import {
|
|
12
12
|
Spinner
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-F7XLV7M3.js";
|
|
14
14
|
import {
|
|
15
15
|
getOptionalAgentHostApi,
|
|
16
16
|
useOptionalAgentHostApi
|
|
17
17
|
} from "./chunk-O5TUTXHT.js";
|
|
18
18
|
import {
|
|
19
19
|
translate
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-GLDKFIWM.js";
|
|
21
21
|
|
|
22
22
|
// shared/agentConversation/approvalOptionPresentation.ts
|
|
23
23
|
function approvalOptionDisplayLabel(option, intent = {}) {
|
|
@@ -1106,4 +1106,4 @@ export {
|
|
|
1106
1106
|
isPromptRequestIdTitle,
|
|
1107
1107
|
AgentInteractivePromptSurface
|
|
1108
1108
|
};
|
|
1109
|
-
//# sourceMappingURL=chunk-
|
|
1109
|
+
//# sourceMappingURL=chunk-FEWMACBN.js.map
|
|
@@ -599,6 +599,7 @@ var en = {
|
|
|
599
599
|
slashStatusContextUnavailable: "Context usage unavailable",
|
|
600
600
|
slashStatusLimitsUnavailable: "Rate limits unavailable from this agent",
|
|
601
601
|
usageChipLabel: "Context {{percent}}%",
|
|
602
|
+
usageTooltipLabel: "Context usage",
|
|
602
603
|
usagePopoverTitle: "Plan usage",
|
|
603
604
|
usageContextWindowLabel: "Context window",
|
|
604
605
|
usageTokensLabel: "Tokens",
|
|
@@ -752,6 +753,7 @@ var en = {
|
|
|
752
753
|
sectionEarlier: "Earlier",
|
|
753
754
|
projectSectionEdit: "New session",
|
|
754
755
|
projectSectionMoreActions: "Project actions",
|
|
756
|
+
projectSectionViewFiles: "Open folder",
|
|
755
757
|
projectRailCreateProject: "New project",
|
|
756
758
|
projectRailLinkExistingProject: "Link existing project folder",
|
|
757
759
|
removeProject: "Remove",
|
|
@@ -848,6 +850,8 @@ var en = {
|
|
|
848
850
|
shortcutCmdEnter: "Cmd + Enter",
|
|
849
851
|
shortcutCtrEnter: "Ctr + Enter",
|
|
850
852
|
openConversationWindow: "Open session in new window",
|
|
853
|
+
showMoreConversations: "Show more",
|
|
854
|
+
showLessConversations: "Show less",
|
|
851
855
|
deleteSession: "Delete session",
|
|
852
856
|
pinSession: "Pin session",
|
|
853
857
|
unpinSession: "Unpin session",
|
|
@@ -894,7 +898,7 @@ var en = {
|
|
|
894
898
|
referenceWorkspaceFiles: "Reference workspace files",
|
|
895
899
|
referencePicker: {
|
|
896
900
|
clearFilter: "Clear filter",
|
|
897
|
-
confirm: "Use
|
|
901
|
+
confirm: "Use references",
|
|
898
902
|
emptyDirectory: "This folder is empty.",
|
|
899
903
|
emptyPreview: "Select a file to see details",
|
|
900
904
|
emptySearch: "No matching files or folders.",
|
|
@@ -2986,6 +2990,7 @@ var zhCN = {
|
|
|
2986
2990
|
slashStatusContextUnavailable: "\u4E0A\u4E0B\u6587\u7528\u91CF\u4E0D\u53EF\u7528",
|
|
2987
2991
|
slashStatusLimitsUnavailable: "\u5F53\u524D Agent \u672A\u63D0\u4F9B\u989D\u5EA6\u9650\u5236",
|
|
2988
2992
|
usageChipLabel: "\u4E0A\u4E0B\u6587 {{percent}}%",
|
|
2993
|
+
usageTooltipLabel: "\u4E0A\u4E0B\u6587\u7528\u91CF",
|
|
2989
2994
|
usagePopoverTitle: "\u8BA1\u5212\u7528\u91CF",
|
|
2990
2995
|
usageContextWindowLabel: "\u4E0A\u4E0B\u6587\u7A97\u53E3",
|
|
2991
2996
|
usageTokensLabel: "Token \u7528\u91CF",
|
|
@@ -3139,6 +3144,7 @@ var zhCN = {
|
|
|
3139
3144
|
sectionEarlier: "\u66F4\u65E9",
|
|
3140
3145
|
projectSectionEdit: "\u65B0\u5EFA\u4F1A\u8BDD",
|
|
3141
3146
|
projectSectionMoreActions: "\u9879\u76EE\u64CD\u4F5C",
|
|
3147
|
+
projectSectionViewFiles: "\u6253\u5F00\u6587\u4EF6\u5939",
|
|
3142
3148
|
projectRailCreateProject: "\u65B0\u5EFA\u9879\u76EE",
|
|
3143
3149
|
projectRailLinkExistingProject: "\u5173\u8054\u5DF2\u6709\u9879\u76EE\u6587\u4EF6",
|
|
3144
3150
|
removeProject: "\u79FB\u9664",
|
|
@@ -3235,6 +3241,8 @@ var zhCN = {
|
|
|
3235
3241
|
shortcutCmdEnter: "Cmd + Enter",
|
|
3236
3242
|
shortcutCtrEnter: "Ctr + Enter",
|
|
3237
3243
|
openConversationWindow: "\u5728\u65B0\u7A97\u53E3\u6253\u5F00\u4F1A\u8BDD",
|
|
3244
|
+
showMoreConversations: "\u663E\u793A\u66F4\u591A",
|
|
3245
|
+
showLessConversations: "\u6536\u8D77",
|
|
3238
3246
|
deleteSession: "\u5220\u9664\u4F1A\u8BDD",
|
|
3239
3247
|
pinSession: "\u7F6E\u9876\u4F1A\u8BDD",
|
|
3240
3248
|
unpinSession: "\u53D6\u6D88\u7F6E\u9876",
|
|
@@ -3281,7 +3289,7 @@ var zhCN = {
|
|
|
3281
3289
|
referenceWorkspaceFiles: "\u5F15\u7528\u7A7A\u95F4\u6587\u4EF6",
|
|
3282
3290
|
referencePicker: {
|
|
3283
3291
|
clearFilter: "\u6E05\u9664\u7B5B\u9009",
|
|
3284
|
-
confirm: "\
|
|
3292
|
+
confirm: "\u5F15\u7528\u6587\u4EF6",
|
|
3285
3293
|
emptyDirectory: "\u5F53\u524D\u76EE\u5F55\u4E3A\u7A7A",
|
|
3286
3294
|
emptyPreview: "\u9009\u62E9\u4E00\u4E2A\u6587\u4EF6\u67E5\u770B\u8BE6\u60C5",
|
|
3287
3295
|
emptySearch: "\u6CA1\u6709\u5339\u914D\u7684\u6587\u4EF6\u6216\u6587\u4EF6\u5939",
|
|
@@ -4888,4 +4896,4 @@ export {
|
|
|
4888
4896
|
AgentGuiI18nProvider,
|
|
4889
4897
|
useTranslation
|
|
4890
4898
|
};
|
|
4891
|
-
//# sourceMappingURL=chunk-
|
|
4899
|
+
//# sourceMappingURL=chunk-GLDKFIWM.js.map
|