@tutti-os/agent-gui 0.0.42 → 0.0.44

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.
Files changed (29) hide show
  1. package/dist/agent-conversation/index.js +4 -4
  2. package/dist/agent-message-center/index.js +4 -4
  3. package/dist/app/renderer/agentactivity.css +17 -3
  4. package/dist/{chunk-XTFRVACA.js → chunk-25VZHG6G.js} +22 -7
  5. package/dist/chunk-25VZHG6G.js.map +1 -0
  6. package/dist/{chunk-3WZWZHAJ.js → chunk-64OSXJRE.js} +2 -2
  7. package/dist/{chunk-3PVSIL3H.js → chunk-GMLK2EFU.js} +4 -4
  8. package/dist/{chunk-LKOPLDPM.js → chunk-IGXC7NRW.js} +51 -3
  9. package/dist/chunk-IGXC7NRW.js.map +1 -0
  10. package/dist/{chunk-42WP3P5C.js → chunk-J4MU53PH.js} +2 -2
  11. package/dist/{chunk-5U4SXENC.js → chunk-SF2PE7M6.js} +16 -5
  12. package/dist/{chunk-5U4SXENC.js.map → chunk-SF2PE7M6.js.map} +1 -1
  13. package/dist/{chunk-5LVFYNIP.js → chunk-ZORA4UAT.js} +2 -2
  14. package/dist/{chunk-OLZP2EFK.js → chunk-ZTQKIJ5J.js} +2 -2
  15. package/dist/context-mention-palette/index.d.ts +2 -1
  16. package/dist/context-mention-palette/index.js +5 -5
  17. package/dist/i18n/index.d.ts +50 -2
  18. package/dist/i18n/index.js +1 -1
  19. package/dist/index.js +1007 -450
  20. package/dist/index.js.map +1 -1
  21. package/dist/workspace-agent-generated-files.js +2 -2
  22. package/package.json +12 -12
  23. package/dist/chunk-LKOPLDPM.js.map +0 -1
  24. package/dist/chunk-XTFRVACA.js.map +0 -1
  25. /package/dist/{chunk-3WZWZHAJ.js.map → chunk-64OSXJRE.js.map} +0 -0
  26. /package/dist/{chunk-3PVSIL3H.js.map → chunk-GMLK2EFU.js.map} +0 -0
  27. /package/dist/{chunk-42WP3P5C.js.map → chunk-J4MU53PH.js.map} +0 -0
  28. /package/dist/{chunk-5LVFYNIP.js.map → chunk-ZORA4UAT.js.map} +0 -0
  29. /package/dist/{chunk-OLZP2EFK.js.map → chunk-ZTQKIJ5J.js.map} +0 -0
@@ -14,7 +14,7 @@ import {
14
14
  import {
15
15
  translate,
16
16
  translateInUiLanguage
17
- } from "./chunk-LKOPLDPM.js";
17
+ } from "./chunk-IGXC7NRW.js";
18
18
 
19
19
  // shared/workspaceAgentActivityListViewModel.ts
20
20
  import { normalizeAgentActivityDisplayStatus } from "@tutti-os/agent-activity-core";
@@ -993,4 +993,4 @@ export {
993
993
  resolveWorkspaceAgentActivityStatus,
994
994
  resolveWorkspaceAgentActivityTitle
995
995
  };
996
- //# sourceMappingURL=chunk-5LVFYNIP.js.map
996
+ //# sourceMappingURL=chunk-ZORA4UAT.js.map
@@ -5,7 +5,7 @@ import {
5
5
  import {
6
6
  translate,
7
7
  useTranslation
8
- } from "./chunk-LKOPLDPM.js";
8
+ } from "./chunk-IGXC7NRW.js";
9
9
  import {
10
10
  resolveAgentWorkspaceFileVisualKind
11
11
  } from "./chunk-PJP5BUU6.js";
@@ -3210,4 +3210,4 @@ export {
3210
3210
  CustomScrollArea,
3211
3211
  MessageSquareMoreIcon
3212
3212
  };
3213
- //# sourceMappingURL=chunk-OLZP2EFK.js.map
3213
+ //# sourceMappingURL=chunk-ZTQKIJ5J.js.map
@@ -28,6 +28,7 @@ interface AgentFileMentionPaletteProps {
28
28
  onSelectFilter: (filter: AgentMentionFilterId) => void;
29
29
  onExpandGroup: (groupId: AgentMentionGroupId) => void;
30
30
  onNavigateHierarchy?: (delta: 1 | -1) => void;
31
+ onNavigateIntoItem?: (item: AgentContextMentionItem) => void;
31
32
  /**
32
33
  * 可选:点击 issue / app 行末尾的「查看产物文件」图标时回调(打开引用 picker 并定位)。
33
34
  * 仅 workspace-issue / workspace-app 行渲染该入口。
@@ -36,7 +37,7 @@ interface AgentFileMentionPaletteProps {
36
37
  }
37
38
  declare function flattenAgentMentionPaletteEntries(state: AgentMentionSearchState): AgentMentionPaletteEntry[];
38
39
  declare function groupStartKeys(state: AgentMentionSearchState): string[];
39
- declare function AgentFileMentionPalette({ state, highlightedKey, label, loadingLabel, emptyLabel, errorLabel, tabHintLabel, maxHeightPx, shouldCenterHighlightedItem, onHighlightChange, onSelectItem, onSelectCategory, onSelectFilter, onExpandGroup, onNavigateHierarchy, onOpenReferences }: AgentFileMentionPaletteProps): React.JSX.Element;
40
+ declare function AgentFileMentionPalette({ state, highlightedKey, label, loadingLabel, emptyLabel, errorLabel, tabHintLabel, maxHeightPx, shouldCenterHighlightedItem, onHighlightChange, onSelectItem, onSelectCategory, onSelectFilter, onExpandGroup, onNavigateHierarchy, onNavigateIntoItem, onOpenReferences }: AgentFileMentionPaletteProps): React.JSX.Element;
40
41
  declare const AgentContextMentionPalette: typeof AgentFileMentionPalette;
41
42
  type AgentContextMentionPaletteProps = AgentFileMentionPaletteProps;
42
43
 
@@ -4,12 +4,12 @@ import {
4
4
  AgentMentionSearchController,
5
5
  flattenAgentMentionPaletteEntries,
6
6
  groupStartKeys
7
- } from "../chunk-5U4SXENC.js";
8
- import "../chunk-5LVFYNIP.js";
9
- import "../chunk-42WP3P5C.js";
7
+ } from "../chunk-SF2PE7M6.js";
8
+ import "../chunk-ZORA4UAT.js";
9
+ import "../chunk-J4MU53PH.js";
10
10
  import "../chunk-MTFSQWZ6.js";
11
11
  import "../chunk-IBIMGLCD.js";
12
- import "../chunk-3WZWZHAJ.js";
12
+ import "../chunk-64OSXJRE.js";
13
13
  import "../chunk-Y35GDLP2.js";
14
14
  import "../chunk-TXXWUG2J.js";
15
15
  import "../chunk-TYGL25EL.js";
@@ -17,7 +17,7 @@ import {
17
17
  AGENT_CONTEXT_MENTION_PROVIDER_IDS
18
18
  } from "../chunk-JM24HADP.js";
19
19
  import "../chunk-GCBDIQDX.js";
20
- import "../chunk-LKOPLDPM.js";
20
+ import "../chunk-IGXC7NRW.js";
21
21
  import "../chunk-LUGELG5V.js";
22
22
  import "../chunk-PJP5BUU6.js";
23
23
  export {
@@ -548,7 +548,7 @@ declare const agentGuiI18nResources: {
548
548
  readonly conversations: "Sessions";
549
549
  readonly newConversation: "New session";
550
550
  readonly agentConfig: "Settings";
551
- readonly agentEnvSetup: "Environment check";
551
+ readonly agentEnvSetup: "Usage & Environment Check";
552
552
  readonly noConversations: "No sessions yet";
553
553
  readonly emptyProjectConversations: "No chats yet";
554
554
  readonly batchRunnerStandaloneTitle: "Agent GUI batch runner";
@@ -643,6 +643,11 @@ declare const agentGuiI18nResources: {
643
643
  readonly batchDeleteProjectSessionsTitle: "Delete project sessions?";
644
644
  readonly batchDeleteProjectSessionsBody: "This will delete {{count}} sessions in “{{project}}”. Deleted sessions cannot be recovered.";
645
645
  readonly batchDeleteProjectSessionsConfirm: "Delete sessions";
646
+ readonly conversationsSectionMoreActions: "Conversation actions";
647
+ readonly batchDeleteConversations: "Batch delete conversations";
648
+ readonly batchDeleteConversationsTitle: "Delete conversations?";
649
+ readonly batchDeleteConversationsBody: "This will delete {{count}} conversations. Deleted conversations cannot be recovered.";
650
+ readonly batchDeleteConversationsConfirm: "Delete conversations";
646
651
  readonly runtimeSessionOnly: "Only runtime sessions appear here.";
647
652
  readonly approvalRequired: "{{provider}} requests your authorization.";
648
653
  readonly approvalUnavailable: "No choices are available.";
@@ -768,6 +773,24 @@ declare const agentGuiI18nResources: {
768
773
  readonly slashPalettePluginsGroup: "Plugins";
769
774
  readonly slashPaletteConnectorsGroup: "Connectors";
770
775
  readonly slashPaletteMcpGroup: "MCP";
776
+ readonly slashCommandCompactLabel: "compact";
777
+ readonly slashCommandContextLabel: "context";
778
+ readonly slashCommandFastLabel: "fast";
779
+ readonly slashCommandGoalLabel: "goal";
780
+ readonly slashCommandInitLabel: "init";
781
+ readonly slashCommandPlanLabel: "plan";
782
+ readonly slashCommandReviewLabel: "review";
783
+ readonly slashCommandStatusLabel: "status";
784
+ readonly slashCommandUsageLabel: "usage";
785
+ readonly slashCommandCompactDescription: "Compact the conversation context.";
786
+ readonly slashCommandContextDescription: "Show the current context snapshot.";
787
+ readonly slashCommandFastDescription: "Toggle fast response mode.";
788
+ readonly slashCommandGoalDescription: "Set, inspect, or clear the current goal.";
789
+ readonly slashCommandInitDescription: "Initialize repository guidance files.";
790
+ readonly slashCommandPlanDescription: "Toggle plan mode.";
791
+ readonly slashCommandReviewDescription: "Run a code review.";
792
+ readonly slashCommandStatusDescription: "Show session status and context usage.";
793
+ readonly slashCommandUsageDescription: "Show context and quota usage.";
771
794
  readonly browserUseCapabilityLabel: "Browser";
772
795
  readonly browserUseCapabilityDescription: "Let the agent use a browser.";
773
796
  readonly browserUseCapabilityDescriptionAutoConnect: "Current mode: reuse your signed-in Chrome.";
@@ -828,6 +851,7 @@ declare const agentGuiI18nResources: {
828
851
  };
829
852
  readonly projectLocked: "Project cannot be changed after the session starts";
830
853
  readonly projectMissingDescription: "This conversation's working directory no longer exists";
854
+ readonly fileMentionEnterFolder: "Enter folder";
831
855
  readonly fileMentionSwitchCategory: "Switch category";
832
856
  readonly fileMentionNavigateHierarchy: "Enter/leave folder";
833
857
  readonly fileMentionSwitchSelection: "Switch selection";
@@ -2946,7 +2970,7 @@ declare const agentGuiI18nResources: {
2946
2970
  readonly empty: "需要 {{provider}} 帮你做些什么?";
2947
2971
  readonly conversations: "会话";
2948
2972
  readonly newConversation: "新建会话";
2949
- readonly agentConfig: "配置";
2973
+ readonly agentConfig: "用量&环境检测";
2950
2974
  readonly agentEnvSetup: "环境检测";
2951
2975
  readonly noConversations: "还没有会话";
2952
2976
  readonly emptyProjectConversations: "暂无对话";
@@ -3042,6 +3066,11 @@ declare const agentGuiI18nResources: {
3042
3066
  readonly batchDeleteProjectSessionsTitle: "删除项目会话?";
3043
3067
  readonly batchDeleteProjectSessionsBody: "将删除「{{project}}」下的 {{count}} 个会话。删除后无法恢复。";
3044
3068
  readonly batchDeleteProjectSessionsConfirm: "删除会话";
3069
+ readonly conversationsSectionMoreActions: "对话操作";
3070
+ readonly batchDeleteConversations: "批量删除对话";
3071
+ readonly batchDeleteConversationsTitle: "删除对话?";
3072
+ readonly batchDeleteConversationsBody: "将删除 {{count}} 个对话。删除后无法恢复。";
3073
+ readonly batchDeleteConversationsConfirm: "删除对话";
3045
3074
  readonly runtimeSessionOnly: "这里只显示 runtime 会话。";
3046
3075
  readonly approvalRequired: "{{provider}} 请求你的授权。";
3047
3076
  readonly approvalUnavailable: "没有可用选项。";
@@ -3167,6 +3196,24 @@ declare const agentGuiI18nResources: {
3167
3196
  readonly slashPalettePluginsGroup: "插件";
3168
3197
  readonly slashPaletteConnectorsGroup: "连接器";
3169
3198
  readonly slashPaletteMcpGroup: "MCP";
3199
+ readonly slashCommandCompactLabel: "压缩";
3200
+ readonly slashCommandContextLabel: "上下文";
3201
+ readonly slashCommandFastLabel: "快速";
3202
+ readonly slashCommandGoalLabel: "目标";
3203
+ readonly slashCommandInitLabel: "初始化";
3204
+ readonly slashCommandPlanLabel: "计划";
3205
+ readonly slashCommandReviewLabel: "审查";
3206
+ readonly slashCommandStatusLabel: "状态";
3207
+ readonly slashCommandUsageLabel: "用量";
3208
+ readonly slashCommandCompactDescription: "压缩当前对话上下文。";
3209
+ readonly slashCommandContextDescription: "查看当前上下文快照。";
3210
+ readonly slashCommandFastDescription: "切换快速响应模式。";
3211
+ readonly slashCommandGoalDescription: "设置、查看或清除当前目标。";
3212
+ readonly slashCommandInitDescription: "初始化仓库说明文件。";
3213
+ readonly slashCommandPlanDescription: "切换计划模式。";
3214
+ readonly slashCommandReviewDescription: "发起代码审查。";
3215
+ readonly slashCommandStatusDescription: "查看会话状态和上下文用量。";
3216
+ readonly slashCommandUsageDescription: "查看上下文和额度用量。";
3170
3217
  readonly browserUseCapabilityLabel: "浏览器";
3171
3218
  readonly browserUseCapabilityDescription: "让 Agent 使用浏览器。";
3172
3219
  readonly browserUseCapabilityDescriptionAutoConnect: "当前配置:复用已登录的 Chrome。";
@@ -3227,6 +3274,7 @@ declare const agentGuiI18nResources: {
3227
3274
  };
3228
3275
  readonly projectLocked: "会话开始后项目不可更改";
3229
3276
  readonly projectMissingDescription: "此对话的工作目录已不存在";
3277
+ readonly fileMentionEnterFolder: "进入文件夹";
3230
3278
  readonly fileMentionSwitchCategory: "切换分类";
3231
3279
  readonly fileMentionNavigateHierarchy: "进入/返回文件夹";
3232
3280
  readonly fileMentionSwitchSelection: "切换选中";
@@ -6,7 +6,7 @@ import {
6
6
  translate,
7
7
  translateInUiLanguage,
8
8
  useTranslation
9
- } from "../chunk-LKOPLDPM.js";
9
+ } from "../chunk-IGXC7NRW.js";
10
10
  export {
11
11
  AgentGuiI18nProvider,
12
12
  agentGuiI18nModule,