@tutti-os/agent-gui 0.0.69 → 0.0.71

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 (55) hide show
  1. package/README.md +8 -5
  2. package/dist/agent-conversation/index.d.ts +2 -2
  3. package/dist/agent-conversation/index.js +6 -6
  4. package/dist/agent-message-center/index.js +8 -8
  5. package/dist/{agentGuiNodeTypes-BipgG2ib.d.ts → agentGuiNodeTypes-C0oBQn-F.d.ts} +1 -6
  6. package/dist/app/renderer/agentactivity.css +168 -0
  7. package/dist/{chunk-KAPBUKIT.js → chunk-DGNKXT3Q.js} +3 -115
  8. package/dist/chunk-DGNKXT3Q.js.map +1 -0
  9. package/dist/{chunk-ERBUQOIL.js → chunk-DXENDZEF.js} +2 -2
  10. package/dist/{chunk-EHLJL76A.js → chunk-FTSEVC6O.js} +2 -2
  11. package/dist/{chunk-6XRTDIDR.js → chunk-ISQCYEUJ.js} +5 -5
  12. package/dist/{chunk-547R2HOD.js → chunk-IZX2YQXY.js} +3 -3
  13. package/dist/{chunk-ZZBLWZJR.js → chunk-KS35VKHM.js} +1 -2
  14. package/dist/chunk-KS35VKHM.js.map +1 -0
  15. package/dist/{chunk-HAKNLXW7.js → chunk-MVPSFOJZ.js} +2 -2
  16. package/dist/{chunk-S32FLJRP.js → chunk-QDWV5VTD.js} +5 -5
  17. package/dist/{chunk-JA6Z3QA7.js → chunk-QJ42HQ24.js} +4 -4
  18. package/dist/{chunk-NH3XBJTZ.js → chunk-SC3PS7AT.js} +2 -2
  19. package/dist/{chunk-KTIKZNGS.js → chunk-SG6A35BU.js} +2 -2
  20. package/dist/{chunk-DAPKF2SN.js → chunk-WWY6MYMU.js} +3 -3
  21. package/dist/{chunk-FRAG4UFU.js → chunk-Y3C5EHSW.js} +58 -14
  22. package/dist/chunk-Y3C5EHSW.js.map +1 -0
  23. package/dist/context-mention-palette/index.js +7 -7
  24. package/dist/i18n/index.d.ts +2 -114
  25. package/dist/i18n/index.js +2 -2
  26. package/dist/index.d.ts +112 -109
  27. package/dist/index.js +153 -38
  28. package/dist/index.js.map +1 -1
  29. package/dist/queued-prompt-runtime.d.ts +2 -2
  30. package/dist/{types-DZ79b8Zn.d.ts → types-CrwMqBm1.d.ts} +4 -1
  31. package/dist/workbench/contribution.d.ts +9 -1
  32. package/dist/workbench/contribution.js +1 -1
  33. package/dist/workbench/index.d.ts +5 -2
  34. package/dist/workbench/index.js +4 -4
  35. package/dist/workbench/launch.d.ts +1 -1
  36. package/dist/workbench/providerCatalog.d.ts +1 -1
  37. package/dist/workbench/sessionTitle.d.ts +1 -1
  38. package/dist/workbench/sessionTitle.js +3 -3
  39. package/dist/workbench/state.d.ts +1 -1
  40. package/dist/workbench/types.d.ts +1 -1
  41. package/dist/workspace-agent-generated-files.js +3 -3
  42. package/package.json +14 -14
  43. package/dist/chunk-FRAG4UFU.js.map +0 -1
  44. package/dist/chunk-KAPBUKIT.js.map +0 -1
  45. package/dist/chunk-ZZBLWZJR.js.map +0 -1
  46. /package/dist/{chunk-ERBUQOIL.js.map → chunk-DXENDZEF.js.map} +0 -0
  47. /package/dist/{chunk-EHLJL76A.js.map → chunk-FTSEVC6O.js.map} +0 -0
  48. /package/dist/{chunk-6XRTDIDR.js.map → chunk-ISQCYEUJ.js.map} +0 -0
  49. /package/dist/{chunk-547R2HOD.js.map → chunk-IZX2YQXY.js.map} +0 -0
  50. /package/dist/{chunk-HAKNLXW7.js.map → chunk-MVPSFOJZ.js.map} +0 -0
  51. /package/dist/{chunk-S32FLJRP.js.map → chunk-QDWV5VTD.js.map} +0 -0
  52. /package/dist/{chunk-JA6Z3QA7.js.map → chunk-QJ42HQ24.js.map} +0 -0
  53. /package/dist/{chunk-NH3XBJTZ.js.map → chunk-SC3PS7AT.js.map} +0 -0
  54. /package/dist/{chunk-KTIKZNGS.js.map → chunk-SG6A35BU.js.map} +0 -0
  55. /package/dist/{chunk-DAPKF2SN.js.map → chunk-WWY6MYMU.js.map} +0 -0
package/README.md CHANGED
@@ -90,12 +90,15 @@ export interface AgentGUIProviderTarget {
90
90
 
91
91
  AgentGUI does not interpret `ref.kind` and does not treat `targetId` or `ref`
92
92
  as authority. It displays `target.label`, keeps provider logic keyed by the
93
- real `target.provider`, and passes `providerTargetRef` through activation.
94
- Trusted host code must re-authenticate the current user/workspace and resolve
95
- any invocation plan before launching.
93
+ real `target.provider`, and starts new sessions with the selected
94
+ `agentTargetId`. Trusted host code must re-authenticate the current
95
+ user/workspace and resolve any invocation plan before launching.
96
96
 
97
97
  If `providerTargets` is omitted or empty, AgentGUI creates local targets such as
98
98
  `local:codex` and `local:claude-code` from the static provider catalog for
99
99
  display/backward compatibility. Those static catalog targets are not persisted
100
- or sent as `providerTargetRef`; legacy hosts continue to receive only the real
101
- `provider`.
100
+ or sent as session creation authority.
101
+
102
+ Hosts that need to brand the aggregate provider rail entry may pass
103
+ `providerRailAllPresentation.iconUrl`. This only changes the `All` filter icon;
104
+ single agent or target icons continue to come from `providerTargets[].iconUrl`.
@@ -4,11 +4,11 @@ import { W as WorkspaceLinkAction } from '../workspaceLinkActions-Bjy_XfBm.js';
4
4
  import { A as AgentMessageMarkdownWorkspaceAppIcon } from '../AgentMessageMarkdown-DeYPURtF.js';
5
5
  import { c as AgentConversationVM, W as WorkspaceAgentSessionDetailViewModel } from '../agentConversationVM-DPAgUJlR.js';
6
6
  export { B as BuildWorkspaceAgentSessionDetailInput, d as buildWorkspaceAgentSessionDetailViewModel } from '../agentConversationVM-DPAgUJlR.js';
7
- import { c as AgentGUIProviderSkillOption } from '../agentGuiNodeTypes-BipgG2ib.js';
7
+ import { c as AgentGUIProviderSkillOption } from '../agentGuiNodeTypes-C0oBQn-F.js';
8
8
  export { W as WorkspaceAgentActivityCard, n as WorkspaceAgentActivitySession, q as WorkspaceAgentActivityTimelineItem } from '../workspaceAgentActivityListViewModel-DJvAqZso.js';
9
9
  import '@tutti-os/workspace-issue-manager/core';
10
10
  import '@tutti-os/agent-activity-core';
11
- import '../types-DZ79b8Zn.js';
11
+ import '../types-CrwMqBm1.js';
12
12
  import '@tutti-os/workspace-user-project/contracts';
13
13
 
14
14
  interface AgentConversationFlowProps {
@@ -6,20 +6,20 @@ import {
6
6
  projectAgentConversationVM,
7
7
  reconcileProjectedAgentConversationVM,
8
8
  useProjectedAgentConversation
9
- } from "../chunk-6XRTDIDR.js";
10
- import "../chunk-DAPKF2SN.js";
9
+ } from "../chunk-ISQCYEUJ.js";
10
+ import "../chunk-WWY6MYMU.js";
11
11
  import "../chunk-PSLAWU25.js";
12
- import "../chunk-547R2HOD.js";
12
+ import "../chunk-IZX2YQXY.js";
13
13
  import "../chunk-Y35GDLP2.js";
14
14
  import "../chunk-LUGELG5V.js";
15
- import "../chunk-ZZBLWZJR.js";
15
+ import "../chunk-KS35VKHM.js";
16
16
  import "../chunk-4US2YHBY.js";
17
17
  import {
18
18
  translate
19
- } from "../chunk-NH3XBJTZ.js";
19
+ } from "../chunk-SC3PS7AT.js";
20
20
  import "../chunk-PJP5BUU6.js";
21
21
  import "../chunk-4I2VCAMW.js";
22
- import "../chunk-KAPBUKIT.js";
22
+ import "../chunk-DGNKXT3Q.js";
23
23
 
24
24
  // shared/WorkspaceAgentSessionDetail.tsx
25
25
  import { useMemo } from "react";
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  formatAgentGuiConversationPlainTitle
3
- } from "../chunk-EHLJL76A.js";
3
+ } from "../chunk-FTSEVC6O.js";
4
4
  import {
5
5
  AgentInteractivePromptSurface,
6
6
  approvalOptionDisplayLabel,
7
7
  getPromptToolDetails,
8
8
  isPromptRequestIdTitle
9
- } from "../chunk-JA6Z3QA7.js";
9
+ } from "../chunk-QJ42HQ24.js";
10
10
  import {
11
11
  PLAN_IMPLEMENTATION_ACTION_IMPLEMENT,
12
12
  PLAN_IMPLEMENTATION_PROMPT,
@@ -15,7 +15,7 @@ import {
15
15
  } from "../chunk-MKHDRIGN.js";
16
16
  import {
17
17
  formatAgentSessionMentionText
18
- } from "../chunk-KTIKZNGS.js";
18
+ } from "../chunk-SG6A35BU.js";
19
19
  import {
20
20
  AgentMessageMarkdown,
21
21
  CustomScrollArea,
@@ -25,17 +25,17 @@ import {
25
25
  extractExitPlanModeOptions,
26
26
  isExitPlanSwitchModeInput,
27
27
  normalizeAskUserQuestions
28
- } from "../chunk-DAPKF2SN.js";
28
+ } from "../chunk-WWY6MYMU.js";
29
29
  import {
30
30
  userAvatarPlaceholderUrl,
31
31
  workspaceAgentActivityStatusLabel
32
- } from "../chunk-HAKNLXW7.js";
32
+ } from "../chunk-MVPSFOJZ.js";
33
33
  import {
34
34
  resolveWorkspaceAgentSessionSortTimeUnixMs
35
35
  } from "../chunk-IBIMGLCD.js";
36
36
  import {
37
37
  managedAgentRoundedIconUrl
38
- } from "../chunk-ZZBLWZJR.js";
38
+ } from "../chunk-KS35VKHM.js";
39
39
  import {
40
40
  workspaceAgentProviderLabel
41
41
  } from "../chunk-4US2YHBY.js";
@@ -43,10 +43,10 @@ import {
43
43
  AgentGuiI18nProvider,
44
44
  getActiveUiLanguage,
45
45
  useTranslation
46
- } from "../chunk-NH3XBJTZ.js";
46
+ } from "../chunk-SC3PS7AT.js";
47
47
  import "../chunk-PJP5BUU6.js";
48
48
  import "../chunk-4I2VCAMW.js";
49
- import "../chunk-KAPBUKIT.js";
49
+ import "../chunk-DGNKXT3Q.js";
50
50
  import "../chunk-GCBDIQDX.js";
51
51
 
52
52
  // agent-message-center/WorkspaceAgentMessageCenterPanel.tsx
@@ -1,5 +1,5 @@
1
1
  import { AgentActivityUsage } from '@tutti-os/agent-activity-core';
2
- import { j as AgentHostAgentSessionCommand, k as AgentHostAgentSessionComposerSettings, m as AgentHostAgentSessionReasoningEffort, n as AgentHostAgentSessionSpeed, l as AgentHostAgentSessionPermissionConfig, o as AgentHostAgentSessionState, a as AgentGUIProvider, r as AgentPromptContentBlock, A as AgentGUINodeData, f as AgentGUIProviderTarget, b as AgentGUIProviderRailMode, c as AgentGUIProviderReadinessGate } from './types-DZ79b8Zn.js';
2
+ import { k as AgentHostAgentSessionCommand, l as AgentHostAgentSessionComposerSettings, n as AgentHostAgentSessionReasoningEffort, o as AgentHostAgentSessionSpeed, m as AgentHostAgentSessionPermissionConfig, p as AgentHostAgentSessionState, a as AgentGUIProvider, s as AgentPromptContentBlock, A as AgentGUINodeData, g as AgentGUIProviderTarget, c as AgentGUIProviderRailMode, d as AgentGUIProviderReadinessGate } from './types-CrwMqBm1.js';
3
3
  import { A as AgentHostBatchUserInfoInput, a as AgentHostBatchUserInfoResult, b as AgentHostDeleteWorkspaceAgentSessionInput, k as AgentHostWorkspaceAgentSessionSummaryInput, j as AgentHostWorkspaceAgentSessionSummary, e as AgentHostWorkspaceAgentListInput, l as AgentHostWorkspaceAgentSnapshot, i as AgentHostWorkspaceAgentSessionMessagesInput, h as AgentHostWorkspaceAgentSessionMessages, p as WorkspaceAgentActivitySyncState } from './workspaceAgentActivityListViewModel-DJvAqZso.js';
4
4
  import { A as AgentApprovalItemVM, a as AgentAskUserQuestionVM, b as AgentConversationPromptVM, c as AgentConversationVM, W as WorkspaceAgentSessionDetailViewModel } from './agentConversationVM-DPAgUJlR.js';
5
5
  import { WorkspaceUserProjectService } from '@tutti-os/workspace-user-project/contracts';
@@ -231,7 +231,6 @@ type AgentHostWorkspaceApi = AgentHostRecord & {
231
231
  };
232
232
  interface AgentHostInputApi {
233
233
  account?: AgentHostAccountApi;
234
- agentGuiBatch?: AgentHostAgentGuiBatchApi;
235
234
  agentSessions?: AgentHostAgentSessionsApi;
236
235
  clipboard: AgentHostClipboardApi;
237
236
  debug?: AgentHostDebugApi;
@@ -251,9 +250,6 @@ type AgentHostAccountApi = AgentHostRecord & {
251
250
  batchGetUserInfo: (input: AgentHostBatchUserInfoInput) => AgentHostAsyncResult<AgentHostBatchUserInfoResult>;
252
251
  ensureProfiles?: (input: any) => AgentHostAsyncResult<any>;
253
252
  };
254
- type AgentHostAgentGuiBatchApi = AgentHostRecord & {
255
- exportRun: (input: any) => AgentHostAsyncResult<any>;
256
- };
257
253
  type AgentHostWorkspaceAgentProbesApi = AgentHostRecord & {
258
254
  list: (input: AgentHostListWorkspaceAgentProbesInput) => AgentHostAsyncResult<AgentHostWorkspaceAgentProbesResult>;
259
255
  };
@@ -380,7 +376,6 @@ type AgentHostWorkspaceAgentsApi = AgentHostRecord & {
380
376
  };
381
377
  interface AgentHostRuntimeApi {
382
378
  account?: AgentHostAccountApi;
383
- agentGuiBatch: AgentHostAgentGuiBatchApi;
384
379
  clipboard: AgentHostClipboardApi;
385
380
  debug?: AgentHostDebugApi;
386
381
  filesystem: AgentHostFilesystemApi;
@@ -4306,12 +4306,90 @@ aside.workspace-agents-status-panel
4306
4306
  user-select: auto;
4307
4307
  }
4308
4308
 
4309
+ .workbench-window:has(
4310
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4311
+ )
4312
+ .workbench-window__header {
4313
+ cursor: grab !important;
4314
+ }
4315
+
4316
+ .workbench-window:has(
4317
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4318
+ )
4319
+ .workbench-window__header:active {
4320
+ cursor: grabbing !important;
4321
+ }
4322
+
4309
4323
  .workbench-window:has([data-agent-gui-workbench-header="true"])
4310
4324
  .workbench-window__body {
4311
4325
  grid-row: 1;
4312
4326
  overflow: hidden;
4313
4327
  }
4314
4328
 
4329
+ .workbench-window:has(
4330
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4331
+ )
4332
+ .workbench-window__body {
4333
+ display: flex;
4334
+ width: 100%;
4335
+ height: 100%;
4336
+ min-width: 0;
4337
+ min-height: 0;
4338
+ }
4339
+
4340
+ .workbench-window[data-agent-gui-standalone-window="true"] {
4341
+ width: 100vw;
4342
+ height: 100vh;
4343
+ max-width: 100vw;
4344
+ max-height: 100vh;
4345
+ overflow: hidden;
4346
+ }
4347
+
4348
+ .workbench-window[data-agent-gui-standalone-window="true"]
4349
+ .workspace-node-window,
4350
+ .workbench-window[data-agent-gui-standalone-window="true"]
4351
+ [data-workspace-node-window-root="true"],
4352
+ .workbench-window[data-agent-gui-standalone-window="true"]
4353
+ [data-workspace-node-window-body="true"],
4354
+ .workbench-window[data-agent-gui-standalone-window="true"]
4355
+ .agent-gui-node__shell,
4356
+ .workbench-window[data-agent-gui-standalone-window="true"]
4357
+ .agent-gui-node__body,
4358
+ .workbench-window[data-agent-gui-standalone-window="true"]
4359
+ .agent-gui-node__layout {
4360
+ width: 100%;
4361
+ height: 100%;
4362
+ min-width: 0;
4363
+ min-height: 0;
4364
+ overflow: hidden;
4365
+ }
4366
+
4367
+ .workbench-window[data-agent-gui-standalone-window="true"]
4368
+ .agent-gui-node__provider-rail-panel,
4369
+ .workbench-window[data-agent-gui-standalone-window="true"]
4370
+ .agent-gui-node__rail,
4371
+ .workbench-window[data-agent-gui-standalone-window="true"]
4372
+ .agent-gui-node__detail-panel,
4373
+ .workbench-window[data-agent-gui-standalone-window="true"]
4374
+ .agent-gui-node__detail {
4375
+ min-height: 0;
4376
+ overflow: hidden;
4377
+ }
4378
+
4379
+ .workbench-window[data-agent-gui-standalone-window="true"]
4380
+ .agent-gui-node__rail-toolbar {
4381
+ flex: 0 0 auto;
4382
+ }
4383
+
4384
+ .workbench-window[data-agent-gui-standalone-window="true"]
4385
+ .agent-gui-node__conversation-list,
4386
+ .workbench-window[data-agent-gui-standalone-window="true"]
4387
+ .agent-gui-node__timeline {
4388
+ min-height: 0;
4389
+ overflow-y: auto;
4390
+ overscroll-behavior: contain;
4391
+ }
4392
+
4315
4393
  .workbench-window:has([data-agent-gui-workbench-header="true"])
4316
4394
  .agent-gui-node__provider-rail-panel {
4317
4395
  padding-top: var(--agent-gui-workbench-header-height);
@@ -4477,6 +4555,26 @@ aside.workspace-agents-status-panel
4477
4555
  margin-right: 0;
4478
4556
  }
4479
4557
 
4558
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"] {
4559
+ cursor: grab !important;
4560
+ -webkit-app-region: drag;
4561
+ }
4562
+
4563
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]:active {
4564
+ cursor: grabbing !important;
4565
+ }
4566
+
4567
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4568
+ .agent-gui-workbench-header__primary {
4569
+ cursor: grab !important;
4570
+ -webkit-app-region: drag;
4571
+ }
4572
+
4573
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4574
+ .agent-gui-workbench-header__primary:active {
4575
+ cursor: grabbing !important;
4576
+ }
4577
+
4480
4578
  .agent-gui-workbench-header__traffic-light {
4481
4579
  position: relative;
4482
4580
  display: inline-flex;
@@ -4638,6 +4736,25 @@ aside.workspace-agents-status-panel
4638
4736
  pointer-events: none;
4639
4737
  }
4640
4738
 
4739
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4740
+ .agent-gui-workbench-header__agent-brand,
4741
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4742
+ .agent-gui-workbench-header__session-title,
4743
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4744
+ .agent-gui-workbench-header__detail-title {
4745
+ cursor: grab !important;
4746
+ -webkit-app-region: drag;
4747
+ }
4748
+
4749
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4750
+ .agent-gui-workbench-header__agent-brand:active,
4751
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4752
+ .agent-gui-workbench-header__session-title:active,
4753
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4754
+ .agent-gui-workbench-header__detail-title:active {
4755
+ cursor: grabbing !important;
4756
+ }
4757
+
4641
4758
  .agent-gui-workbench-header__icon-button {
4642
4759
  display: inline-flex !important;
4643
4760
  width: 28px !important;
@@ -4655,6 +4772,16 @@ aside.workspace-agents-status-panel
4655
4772
  cursor: pointer;
4656
4773
  }
4657
4774
 
4775
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4776
+ .agent-gui-workbench-header__traffic-lights,
4777
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4778
+ .agent-gui-workbench-header__traffic-light,
4779
+ .agent-gui-workbench-header[data-agent-gui-standalone-window-header="true"]
4780
+ .agent-gui-workbench-header__icon-button {
4781
+ cursor: pointer !important;
4782
+ -webkit-app-region: no-drag;
4783
+ }
4784
+
4658
4785
  .agent-gui-workbench-header__icon-button:hover,
4659
4786
  .agent-gui-workbench-header__icon-button:focus-visible {
4660
4787
  background: color-mix(
@@ -4669,6 +4796,15 @@ aside.workspace-agents-status-panel
4669
4796
  margin-left: auto;
4670
4797
  }
4671
4798
 
4799
+ .agent-gui-workbench-header__detached-window {
4800
+ margin-left: auto;
4801
+ }
4802
+
4803
+ .agent-gui-workbench-header__detached-window
4804
+ + .agent-gui-workbench-header__rail-toggle {
4805
+ margin-left: 0;
4806
+ }
4807
+
4672
4808
  .workbench-window:has([data-workbench-node-render-error="true"])
4673
4809
  .agent-gui-workbench-header__rail-toggle {
4674
4810
  display: none !important;
@@ -4751,6 +4887,7 @@ aside.workspace-agents-status-panel
4751
4887
  }
4752
4888
 
4753
4889
  .agent-gui-node__detail-panel {
4890
+ position: relative;
4754
4891
  display: flex;
4755
4892
  height: 100%;
4756
4893
  min-width: 0;
@@ -4767,6 +4904,37 @@ aside.workspace-agents-status-panel
4767
4904
  overflow: hidden;
4768
4905
  }
4769
4906
 
4907
+ .agent-gui-node__composer-file-drop-overlay {
4908
+ position: absolute;
4909
+ inset: 0;
4910
+ z-index: 40;
4911
+ display: grid;
4912
+ place-items: center;
4913
+ padding: 24px;
4914
+ border-radius: inherit;
4915
+ border: 2px dashed color-mix(in srgb, var(--tutti-purple) 70%, transparent);
4916
+ background: color-mix(
4917
+ in srgb,
4918
+ var(--tutti-purple) 12%,
4919
+ var(--agent-gui-session-flow-background)
4920
+ );
4921
+ opacity: 0;
4922
+ pointer-events: none;
4923
+ transition: opacity 150ms ease-out;
4924
+ }
4925
+
4926
+ .agent-gui-node__composer-file-drop-overlay--active {
4927
+ opacity: 1;
4928
+ }
4929
+
4930
+ .agent-gui-node__composer-file-drop-overlay-card {
4931
+ color: var(--text-primary);
4932
+ font-size: 15px;
4933
+ font-weight: 500;
4934
+ line-height: 1.4;
4935
+ text-align: center;
4936
+ }
4937
+
4770
4938
  .agent-gui-node__rail {
4771
4939
  position: relative;
4772
4940
  display: flex;
@@ -739,63 +739,6 @@ var en = {
739
739
  handoffConversation: "Handoff",
740
740
  handoffConversationTooltip: "Hand off to another agent",
741
741
  handoffConversationMenu: "Choose an agent for handoff",
742
- batchRunnerStandaloneTitle: "Agent GUI batch runner",
743
- batchRunnerSubtitle: "Run JSONL prompt cases and review execution results",
744
- batchRunnerPromptSource: "Case source",
745
- batchRunnerSelectAgent: "Select Agent",
746
- batchRunnerUploadFile: "Upload JSONL",
747
- batchRunnerUseBuiltInFile: "Use built-in cases",
748
- batchRunnerSelectFile: "Select JSONL",
749
- batchRunnerProviderClaudeCode: "Claude Code",
750
- batchRunnerProviderCodex: "Codex",
751
- batchRunnerProviderHermes: "Hermes",
752
- batchRunnerProviderNexight: "Nexight",
753
- batchRunnerProviderOpenClaw: "OpenClaw",
754
- batchRunnerProviderTuttiAgent: "Tutti Agent",
755
- batchRunnerRun: "Run",
756
- batchRunnerRunning: "Running...",
757
- batchRunnerExport: "Export",
758
- batchRunnerExporting: "Exporting...",
759
- batchRunnerNoFile: "No JSONL selected",
760
- batchRunnerLoadedFile: "{{file}} \xB7 {{count}} cases",
761
- batchRunnerLoadedFileMeta: "{{count}} cases",
762
- batchRunnerEmptyFile: "No prompt cases found.",
763
- batchRunnerParseInvalidJson: "Line {{line}}: invalid JSON.",
764
- batchRunnerParseObjectRequired: "Line {{line}}: each row must be a JSON object.",
765
- batchRunnerParsePromptRequired: "Line {{line}}: prompt is required.",
766
- batchRunnerLine: "Line",
767
- batchRunnerAgent: "Agent",
768
- batchRunnerCase: "Case",
769
- batchRunnerStatus: "Status",
770
- batchRunnerIssues: "Tasks",
771
- batchRunnerSession: "Session",
772
- batchRunnerSessionEmpty: "Select a case with a session to inspect its timeline.",
773
- batchRunnerSessionLoading: "Loading",
774
- batchRunnerSessionRefresh: "Refresh",
775
- batchRunnerSessionBackToResults: "Back to results",
776
- batchRunnerSessionRawJson: "Raw JSON",
777
- batchRunnerSessionErrorCount: "{{count}} errors",
778
- batchRunnerSessionToolFailureCount: "{{count}} tool failures",
779
- batchRunnerStatus_pending: "Pending",
780
- batchRunnerStatus_running: "Running",
781
- batchRunnerStatus_completed: "Done",
782
- batchRunnerStatus_failed: "Failed",
783
- batchRunnerStatus_canceled: "Canceled",
784
- batchRunnerStatus_blocked: "Blocked",
785
- batchRunnerStatus_error: "Error",
786
- batchRunnerProgress: "Progress",
787
- batchRunnerTotalCases: "{{count}} cases",
788
- batchRunnerIssueCases: "{{count}} tasks",
789
- batchRunnerSearchPlaceholder: "Search cases",
790
- batchRunnerAllStatuses: "All statuses",
791
- batchRunnerActions: "Actions",
792
- batchRunnerCopySession: "Copy session id",
793
- batchRunnerOpenSession: "Open session",
794
- batchRunnerNoResults: "No matching cases",
795
- batchRunnerVisibleCount: "Total {{count}}",
796
- batchRunnerPageIndicator: "Page {{page}} / {{total}}",
797
- batchRunnerPageSize: "{{count}} / page",
798
- batchRunnerExported: "Exported {{file}}",
799
742
  startConversation: "Start session",
800
743
  selectConversation: "Select a session",
801
744
  loadingConversations: "Loading sessions...",
@@ -1023,6 +966,7 @@ var en = {
1023
966
  fileMentionEmpty: "Search workspace files based on your input",
1024
967
  fileMentionError: "Unable to search Files.",
1025
968
  fileMentionTabHint: "Tab switch category | \u2190\u2192 enter/leave folder | \u2191\u2193 switch selection",
969
+ fileDropHint: "Drop files to add them to the session",
1026
970
  mentionPalette: "Mention context",
1027
971
  addReference: "Add reference",
1028
972
  addContent: "Add files and more",
@@ -3294,63 +3238,6 @@ var zhCN = {
3294
3238
  handoffConversation: "Handoff",
3295
3239
  handoffConversationTooltip: "\u4EA4\u63A5\u7ED9\u5176\u4ED6 Agent",
3296
3240
  handoffConversationMenu: "\u9009\u62E9\u8981\u4EA4\u63A5\u7684 Agent",
3297
- batchRunnerStandaloneTitle: "Agent GUI \u6279\u91CF\u6267\u884C\u9762\u677F",
3298
- batchRunnerSubtitle: "\u6279\u91CF\u6267\u884C JSONL \u7528\u4F8B\uFF0C\u67E5\u770B\u8FDB\u5EA6\u4E0E\u6267\u884C\u7ED3\u679C",
3299
- batchRunnerPromptSource: "\u7528\u4F8B\u6765\u6E90",
3300
- batchRunnerSelectAgent: "\u9009\u62E9 Agent",
3301
- batchRunnerUploadFile: "\u4E0A\u4F20 JSONL",
3302
- batchRunnerUseBuiltInFile: "\u4F7F\u7528\u5185\u7F6E\u7528\u4F8B",
3303
- batchRunnerSelectFile: "\u9009\u62E9 JSONL",
3304
- batchRunnerProviderClaudeCode: "Claude Code",
3305
- batchRunnerProviderCodex: "Codex",
3306
- batchRunnerProviderHermes: "Hermes",
3307
- batchRunnerProviderNexight: "Nexight",
3308
- batchRunnerProviderOpenClaw: "OpenClaw",
3309
- batchRunnerProviderTuttiAgent: "Tutti Agent",
3310
- batchRunnerRun: "\u6267\u884C",
3311
- batchRunnerRunning: "\u6267\u884C\u4E2D...",
3312
- batchRunnerExport: "\u5BFC\u51FA",
3313
- batchRunnerExporting: "\u5BFC\u51FA\u4E2D...",
3314
- batchRunnerNoFile: "\u672A\u9009\u62E9 JSONL",
3315
- batchRunnerLoadedFile: "{{file}} \xB7 {{count}} \u6761\u7528\u4F8B",
3316
- batchRunnerLoadedFileMeta: "{{count}} \u6761\u7528\u4F8B",
3317
- batchRunnerEmptyFile: "\u6CA1\u6709\u627E\u5230 prompt \u7528\u4F8B\u3002",
3318
- batchRunnerParseInvalidJson: "\u7B2C {{line}} \u884C\uFF1AJSON \u65E0\u6548\u3002",
3319
- batchRunnerParseObjectRequired: "\u7B2C {{line}} \u884C\uFF1A\u6BCF\u884C\u5FC5\u987B\u662F JSON \u5BF9\u8C61\u3002",
3320
- batchRunnerParsePromptRequired: "\u7B2C {{line}} \u884C\uFF1A\u7F3A\u5C11 prompt\u3002",
3321
- batchRunnerLine: "\u884C\u53F7",
3322
- batchRunnerAgent: "Agent",
3323
- batchRunnerCase: "\u7528\u4F8B",
3324
- batchRunnerStatus: "\u72B6\u6001",
3325
- batchRunnerIssues: "\u5F02\u5E38",
3326
- batchRunnerSession: "Session",
3327
- batchRunnerSessionEmpty: "\u9009\u62E9\u5E26 Session \u7684\u7528\u4F8B\u540E\u67E5\u770B timeline\u3002",
3328
- batchRunnerSessionLoading: "\u52A0\u8F7D\u4E2D",
3329
- batchRunnerSessionRefresh: "\u5237\u65B0",
3330
- batchRunnerSessionBackToResults: "\u8FD4\u56DE\u7ED3\u679C",
3331
- batchRunnerSessionRawJson: "Raw JSON",
3332
- batchRunnerSessionErrorCount: "{{count}} \u4E2A\u9519\u8BEF",
3333
- batchRunnerSessionToolFailureCount: "{{count}} \u4E2A\u5DE5\u5177\u5931\u8D25",
3334
- batchRunnerStatus_pending: "\u5F85\u6267\u884C",
3335
- batchRunnerStatus_running: "\u6267\u884C\u4E2D",
3336
- batchRunnerStatus_completed: "\u5B8C\u6210",
3337
- batchRunnerStatus_failed: "\u5931\u8D25",
3338
- batchRunnerStatus_canceled: "\u5DF2\u53D6\u6D88",
3339
- batchRunnerStatus_blocked: "\u963B\u585E",
3340
- batchRunnerStatus_error: "\u9519\u8BEF",
3341
- batchRunnerProgress: "\u6574\u4F53\u8FDB\u5EA6",
3342
- batchRunnerTotalCases: "\u5171 {{count}} \u6761\u7528\u4F8B",
3343
- batchRunnerIssueCases: "{{count}} \u6761\u5F02\u5E38",
3344
- batchRunnerSearchPlaceholder: "\u641C\u7D22\u7528\u4F8B",
3345
- batchRunnerAllStatuses: "\u5168\u90E8\u72B6\u6001",
3346
- batchRunnerActions: "\u64CD\u4F5C",
3347
- batchRunnerCopySession: "\u590D\u5236 Session ID",
3348
- batchRunnerOpenSession: "\u6253\u5F00 Session",
3349
- batchRunnerNoResults: "\u6CA1\u6709\u5339\u914D\u7684\u7528\u4F8B",
3350
- batchRunnerVisibleCount: "\u603B\u8BA1 {{count}} \u6761",
3351
- batchRunnerPageIndicator: "\u7B2C {{page}} / {{total}} \u9875",
3352
- batchRunnerPageSize: "{{count}} \u6761/\u9875",
3353
- batchRunnerExported: "\u5DF2\u5BFC\u51FA {{file}}",
3354
3241
  startConversation: "\u5F00\u59CB\u4F1A\u8BDD",
3355
3242
  selectConversation: "\u9009\u62E9\u4E00\u4E2A\u4F1A\u8BDD",
3356
3243
  loadingConversations: "\u6B63\u5728\u52A0\u8F7D\u4F1A\u8BDD...",
@@ -3578,6 +3465,7 @@ var zhCN = {
3578
3465
  fileMentionEmpty: "\u6839\u636E\u4F60\u8F93\u5165\u7684\u5185\u5BB9\u641C\u7D22\u5DE5\u4F5C\u533A\u6587\u4EF6",
3579
3466
  fileMentionError: "\u65E0\u6CD5\u641C\u7D22\u5DE5\u4F5C\u533A\u6587\u4EF6\u3002",
3580
3467
  fileMentionTabHint: "Tab \u5207\u6362\u5206\u7C7B \uFF5C \u2190\u2192 \u8FDB\u5165/\u8FD4\u56DE\u6587\u4EF6\u5939 \uFF5C \u2191\u2193 \u5207\u6362\u9009\u4E2D",
3468
+ fileDropHint: "\u62D6\u653E\u6587\u4EF6\u4EE5\u6DFB\u52A0\u5230\u4F1A\u8BDD",
3581
3469
  mentionPalette: "\u63D0\u53CA\u4E0A\u4E0B\u6587",
3582
3470
  addReference: "\u6DFB\u52A0\u5F15\u7528",
3583
3471
  addContent: "\u6DFB\u52A0\u6587\u4EF6\u7B49\u5185\u5BB9",
@@ -5171,4 +5059,4 @@ export {
5171
5059
  translateInUiLanguage,
5172
5060
  getActiveUiLanguage
5173
5061
  };
5174
- //# sourceMappingURL=chunk-KAPBUKIT.js.map
5062
+ //# sourceMappingURL=chunk-DGNKXT3Q.js.map