@tutti-os/agent-gui 0.0.15 → 0.0.17
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/AgentMentionSearchController-DqssJ2-b.d.ts +218 -0
- package/dist/agent-conversation/index.d.ts +3 -1
- package/dist/agent-conversation/index.js +5 -4
- package/dist/agent-conversation/index.js.map +1 -1
- package/dist/agent-message-center/index.d.ts +6 -2
- package/dist/agent-message-center/index.js +714 -291
- package/dist/agent-message-center/index.js.map +1 -1
- package/dist/app/renderer/agentactivity.css +176 -8
- package/dist/{chunk-KJPMZ7G5.js → chunk-65YMY2M3.js} +43 -17
- package/dist/chunk-65YMY2M3.js.map +1 -0
- package/dist/{chunk-OFGXNXYT.js → chunk-CDTTIUPL.js} +2 -2
- package/dist/{chunk-EK5RDKG7.js → chunk-GWR6WGZY.js} +21 -11
- package/dist/chunk-GWR6WGZY.js.map +1 -0
- package/dist/{chunk-H4HT3FE6.js → chunk-HVOPJU2K.js} +40 -30
- package/dist/chunk-HVOPJU2K.js.map +1 -0
- package/dist/{chunk-7CBJJNX6.js → chunk-JNGYJ7GM.js} +2 -2
- package/dist/{chunk-7CBJJNX6.js.map → chunk-JNGYJ7GM.js.map} +1 -1
- package/dist/{chunk-YKDFQADM.js → chunk-K44WER5Z.js} +177 -332
- package/dist/chunk-K44WER5Z.js.map +1 -0
- package/dist/{chunk-U4F3COKL.js → chunk-KHTIC52P.js} +83 -115
- package/dist/chunk-KHTIC52P.js.map +1 -0
- package/dist/chunk-O5TUTXHT.js +196 -0
- package/dist/chunk-O5TUTXHT.js.map +1 -0
- package/dist/{chunk-XHQGCP7A.js → chunk-OJ5WX7SZ.js} +2 -2
- package/dist/{chunk-SVOGXWFJ.js → chunk-VNAQ6QFE.js} +562 -468
- package/dist/chunk-VNAQ6QFE.js.map +1 -0
- package/dist/{chunk-2CA4NPP3.js → chunk-VO2TZNKV.js} +10 -7
- package/dist/{chunk-2CA4NPP3.js.map → chunk-VO2TZNKV.js.map} +1 -1
- package/dist/context-mention-palette/index.d.ts +5 -104
- package/dist/context-mention-palette/index.js +6 -5
- package/dist/i18n/index.d.ts +42 -16
- package/dist/i18n/index.js +1 -1
- package/dist/index.d.ts +22 -2
- package/dist/index.js +2002 -1329
- 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/launch.js +1 -1
- package/dist/workspace-agent-generated-files.js +2 -2
- package/package.json +12 -12
- package/dist/agentFileMentionExtension-CM1c9bqk.d.ts +0 -86
- package/dist/chunk-EK5RDKG7.js.map +0 -1
- package/dist/chunk-H4HT3FE6.js.map +0 -1
- package/dist/chunk-KJPMZ7G5.js.map +0 -1
- package/dist/chunk-SVOGXWFJ.js.map +0 -1
- package/dist/chunk-U4F3COKL.js.map +0 -1
- package/dist/chunk-YKDFQADM.js.map +0 -1
- /package/dist/{chunk-OFGXNXYT.js.map → chunk-CDTTIUPL.js.map} +0 -0
- /package/dist/{chunk-XHQGCP7A.js.map → chunk-OJ5WX7SZ.js.map} +0 -0
|
@@ -2629,6 +2629,16 @@ aside.workspace-agents-status-panel
|
|
|
2629
2629
|
white-space: nowrap;
|
|
2630
2630
|
}
|
|
2631
2631
|
|
|
2632
|
+
.agent-gui-chrome__goal-hint {
|
|
2633
|
+
flex: 0 0 auto;
|
|
2634
|
+
white-space: nowrap;
|
|
2635
|
+
font-size: 11px;
|
|
2636
|
+
font-weight: 400;
|
|
2637
|
+
line-height: 16px;
|
|
2638
|
+
color: var(--agent-gui-text-tertiary, var(--text-tertiary));
|
|
2639
|
+
opacity: 0.8;
|
|
2640
|
+
}
|
|
2641
|
+
|
|
2632
2642
|
.agent-gui-chrome__message-slot {
|
|
2633
2643
|
display: flex;
|
|
2634
2644
|
min-width: 0;
|
|
@@ -2826,6 +2836,7 @@ aside.workspace-agents-status-panel
|
|
|
2826
2836
|
text-align: left;
|
|
2827
2837
|
transition:
|
|
2828
2838
|
background-color 150ms ease,
|
|
2839
|
+
box-shadow 150ms ease,
|
|
2829
2840
|
color 150ms ease;
|
|
2830
2841
|
}
|
|
2831
2842
|
|
|
@@ -2834,6 +2845,11 @@ aside.workspace-agents-status-panel
|
|
|
2834
2845
|
background: var(--transparency-hover);
|
|
2835
2846
|
}
|
|
2836
2847
|
|
|
2848
|
+
.agent-gui-conversation__interactive-option-button[data-active="true"] {
|
|
2849
|
+
box-shadow: inset 0 0 0 1px
|
|
2850
|
+
color-mix(in srgb, var(--text-primary) 24%, transparent);
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2837
2853
|
.agent-gui-conversation__interactive-option-display {
|
|
2838
2854
|
position: relative;
|
|
2839
2855
|
display: grid;
|
|
@@ -3067,6 +3083,13 @@ aside.workspace-agents-status-panel
|
|
|
3067
3083
|
padding: 6px 12px;
|
|
3068
3084
|
}
|
|
3069
3085
|
|
|
3086
|
+
.agent-gui-conversation__interactive-prompt-actions button:disabled {
|
|
3087
|
+
cursor: not-allowed;
|
|
3088
|
+
background: var(--transparency-block);
|
|
3089
|
+
color: var(--text-disabled);
|
|
3090
|
+
opacity: 0.58;
|
|
3091
|
+
}
|
|
3092
|
+
|
|
3070
3093
|
.agent-gui-conversation__user-message-flow,
|
|
3071
3094
|
.agent-gui-conversation__assistant-message-flow {
|
|
3072
3095
|
display: grid;
|
|
@@ -3090,20 +3113,25 @@ aside.workspace-agents-status-panel
|
|
|
3090
3113
|
top: 100%;
|
|
3091
3114
|
right: 0;
|
|
3092
3115
|
left: 0;
|
|
3093
|
-
height:
|
|
3116
|
+
height: 26px;
|
|
3094
3117
|
content: "";
|
|
3095
3118
|
}
|
|
3096
3119
|
|
|
3097
3120
|
.agent-gui-conversation__message-group:has(
|
|
3098
3121
|
> .agent-gui-conversation__message-copy-button
|
|
3099
3122
|
) {
|
|
3100
|
-
margin-bottom:
|
|
3123
|
+
margin-bottom: 26px;
|
|
3101
3124
|
}
|
|
3102
3125
|
|
|
3103
3126
|
.agent-gui-conversation__message-copy-button {
|
|
3104
3127
|
position: absolute;
|
|
3105
|
-
top: calc(100% +
|
|
3128
|
+
top: calc(100% + 4px);
|
|
3106
3129
|
z-index: 1;
|
|
3130
|
+
width: 22px;
|
|
3131
|
+
min-width: 22px;
|
|
3132
|
+
height: 22px;
|
|
3133
|
+
min-height: 22px;
|
|
3134
|
+
border-radius: 5px;
|
|
3107
3135
|
opacity: 0;
|
|
3108
3136
|
pointer-events: none;
|
|
3109
3137
|
transform: translateY(-2px);
|
|
@@ -3374,7 +3402,8 @@ aside.workspace-agents-status-panel
|
|
|
3374
3402
|
|
|
3375
3403
|
.tsh-agent-object-token {
|
|
3376
3404
|
min-width: 0;
|
|
3377
|
-
|
|
3405
|
+
/* 超出最大展示宽度时截断为省略号(标签 __main 已有 ellipsis);hover 经原生 title 看完整文本。 */
|
|
3406
|
+
max-width: min(100%, var(--agent-mention-max-width, 16rem));
|
|
3378
3407
|
text-decoration: none;
|
|
3379
3408
|
}
|
|
3380
3409
|
|
|
@@ -3636,6 +3665,7 @@ aside.workspace-agents-status-panel
|
|
|
3636
3665
|
color: inherit;
|
|
3637
3666
|
}
|
|
3638
3667
|
|
|
3668
|
+
.agent-gui-node__composer-textarea [data-slot="mention-pill"],
|
|
3639
3669
|
.agent-gui-node__composer-textarea
|
|
3640
3670
|
[data-agent-file-mention="true"].tsh-agent-object-token {
|
|
3641
3671
|
cursor: pointer;
|
|
@@ -4367,6 +4397,46 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4367
4397
|
pointer-events: auto;
|
|
4368
4398
|
}
|
|
4369
4399
|
|
|
4400
|
+
.agent-gui-node__conversation-section-action-tooltip-wrap {
|
|
4401
|
+
position: relative;
|
|
4402
|
+
display: inline-flex;
|
|
4403
|
+
flex: none;
|
|
4404
|
+
}
|
|
4405
|
+
|
|
4406
|
+
.agent-gui-node__conversation-section-action-tooltip {
|
|
4407
|
+
position: absolute;
|
|
4408
|
+
top: calc(100% + 6px);
|
|
4409
|
+
left: 50%;
|
|
4410
|
+
z-index: var(--z-tooltip);
|
|
4411
|
+
max-width: 180px;
|
|
4412
|
+
padding: 5px 8px;
|
|
4413
|
+
border: 1px solid var(--line-2, var(--tutti-line-2));
|
|
4414
|
+
border-radius: 6px;
|
|
4415
|
+
background: var(--background-fronted);
|
|
4416
|
+
box-shadow: 0 10px 26px rgb(0 0 0 / 0.18);
|
|
4417
|
+
color: var(--text-primary);
|
|
4418
|
+
font-size: 11px;
|
|
4419
|
+
font-weight: 500;
|
|
4420
|
+
line-height: 1.2;
|
|
4421
|
+
opacity: 0;
|
|
4422
|
+
overflow: hidden;
|
|
4423
|
+
pointer-events: none;
|
|
4424
|
+
text-overflow: ellipsis;
|
|
4425
|
+
transform: translate(-50%, -2px);
|
|
4426
|
+
transition:
|
|
4427
|
+
opacity 120ms ease,
|
|
4428
|
+
transform 120ms ease;
|
|
4429
|
+
white-space: nowrap;
|
|
4430
|
+
}
|
|
4431
|
+
|
|
4432
|
+
.agent-gui-node__conversation-section-action-tooltip-wrap:hover
|
|
4433
|
+
.agent-gui-node__conversation-section-action-tooltip,
|
|
4434
|
+
.agent-gui-node__conversation-section-action-tooltip-wrap:focus-within
|
|
4435
|
+
.agent-gui-node__conversation-section-action-tooltip {
|
|
4436
|
+
opacity: 1;
|
|
4437
|
+
transform: translate(-50%, 0);
|
|
4438
|
+
}
|
|
4439
|
+
|
|
4370
4440
|
.agent-gui-node__conversation-section-more-button {
|
|
4371
4441
|
flex: none;
|
|
4372
4442
|
opacity: 0;
|
|
@@ -4447,6 +4517,38 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4447
4517
|
gap: 2px;
|
|
4448
4518
|
}
|
|
4449
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
|
+
|
|
4450
4552
|
@media (prefers-reduced-motion: reduce) {
|
|
4451
4553
|
.agent-gui-node__conversation-section-items {
|
|
4452
4554
|
transition: none;
|
|
@@ -4629,7 +4731,7 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4629
4731
|
|
|
4630
4732
|
.agent-gui-node__conversation-item:hover .agent-gui-node__conversation-select {
|
|
4631
4733
|
grid-template-columns: minmax(0, 1fr) 0;
|
|
4632
|
-
padding-right:
|
|
4734
|
+
padding-right: 96px;
|
|
4633
4735
|
}
|
|
4634
4736
|
|
|
4635
4737
|
.agent-gui-node__conversation-item[data-pending-delete="true"]
|
|
@@ -4671,7 +4773,7 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4671
4773
|
justify-content: flex-start;
|
|
4672
4774
|
gap: 0;
|
|
4673
4775
|
box-sizing: border-box;
|
|
4674
|
-
min-width:
|
|
4776
|
+
min-width: 72px;
|
|
4675
4777
|
max-width: calc(100% - 20px);
|
|
4676
4778
|
opacity: 0;
|
|
4677
4779
|
transform: translateY(-50%);
|
|
@@ -4679,6 +4781,7 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4679
4781
|
}
|
|
4680
4782
|
|
|
4681
4783
|
.agent-gui-node__conversation-delete-button,
|
|
4784
|
+
.agent-gui-node__conversation-open-window-button,
|
|
4682
4785
|
.agent-gui-node__conversation-pin-button {
|
|
4683
4786
|
background: transparent;
|
|
4684
4787
|
background-color: transparent;
|
|
@@ -4686,6 +4789,7 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4686
4789
|
}
|
|
4687
4790
|
|
|
4688
4791
|
.agent-gui-node__conversation-pin-button svg,
|
|
4792
|
+
.agent-gui-node__conversation-open-window-button svg,
|
|
4689
4793
|
.agent-gui-node__conversation-delete-button svg {
|
|
4690
4794
|
width: 14px;
|
|
4691
4795
|
height: 14px;
|
|
@@ -4739,6 +4843,35 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4739
4843
|
opacity: 0;
|
|
4740
4844
|
}
|
|
4741
4845
|
|
|
4846
|
+
.agent-gui-node__conversation-actions
|
|
4847
|
+
> button.agent-gui-node__conversation-open-window-button:not(:disabled):hover,
|
|
4848
|
+
.agent-gui-node__conversation-actions
|
|
4849
|
+
> button.agent-gui-node__conversation-open-window-button:not(
|
|
4850
|
+
:disabled
|
|
4851
|
+
):focus-visible,
|
|
4852
|
+
.agent-gui-node__conversation-actions
|
|
4853
|
+
> button.agent-gui-node__conversation-open-window-button:not(
|
|
4854
|
+
:disabled
|
|
4855
|
+
):active {
|
|
4856
|
+
background: transparent;
|
|
4857
|
+
background-color: transparent;
|
|
4858
|
+
color: var(--text-primary);
|
|
4859
|
+
}
|
|
4860
|
+
|
|
4861
|
+
.agent-gui-node__conversation-actions
|
|
4862
|
+
> button.agent-gui-node__conversation-open-window-button:not(:disabled):hover
|
|
4863
|
+
svg,
|
|
4864
|
+
.agent-gui-node__conversation-actions
|
|
4865
|
+
> button.agent-gui-node__conversation-open-window-button:not(
|
|
4866
|
+
:disabled
|
|
4867
|
+
):focus-visible
|
|
4868
|
+
svg,
|
|
4869
|
+
.agent-gui-node__conversation-actions
|
|
4870
|
+
> button.agent-gui-node__conversation-open-window-button:not(:disabled):active
|
|
4871
|
+
svg {
|
|
4872
|
+
color: var(--text-primary);
|
|
4873
|
+
}
|
|
4874
|
+
|
|
4742
4875
|
.agent-gui-node__conversation-actions
|
|
4743
4876
|
> button.agent-gui-node__conversation-pin-button:not(:disabled):hover,
|
|
4744
4877
|
.agent-gui-node__conversation-actions
|
|
@@ -4792,6 +4925,7 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4792
4925
|
}
|
|
4793
4926
|
|
|
4794
4927
|
.agent-gui-node__conversation-delete-button:disabled,
|
|
4928
|
+
.agent-gui-node__conversation-open-window-button:disabled,
|
|
4795
4929
|
.agent-gui-node__conversation-pin-button:disabled {
|
|
4796
4930
|
cursor: not-allowed;
|
|
4797
4931
|
opacity: 0.4;
|
|
@@ -4804,7 +4938,7 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
4804
4938
|
color: var(--text-primary);
|
|
4805
4939
|
font-size: 13px;
|
|
4806
4940
|
line-height: 18px;
|
|
4807
|
-
font-weight:
|
|
4941
|
+
font-weight: 400;
|
|
4808
4942
|
text-overflow: ellipsis;
|
|
4809
4943
|
white-space: nowrap;
|
|
4810
4944
|
}
|
|
@@ -5319,6 +5453,40 @@ button.agent-gui-node__conversation-section-toggle:hover
|
|
|
5319
5453
|
color: inherit;
|
|
5320
5454
|
}
|
|
5321
5455
|
|
|
5456
|
+
.agent-gui-node__provider-setup-notice {
|
|
5457
|
+
display: flex;
|
|
5458
|
+
align-items: center;
|
|
5459
|
+
gap: 8px;
|
|
5460
|
+
box-sizing: border-box;
|
|
5461
|
+
margin: 16px var(--agent-gui-detail-padding-x) 8px;
|
|
5462
|
+
border: 1px solid
|
|
5463
|
+
color-mix(
|
|
5464
|
+
in srgb,
|
|
5465
|
+
var(--agent-gui-warning, var(--state-warning)) 26%,
|
|
5466
|
+
transparent
|
|
5467
|
+
);
|
|
5468
|
+
border-radius: 8px;
|
|
5469
|
+
padding: 8px 10px;
|
|
5470
|
+
color: var(--agent-gui-warning, var(--state-warning));
|
|
5471
|
+
background: color-mix(
|
|
5472
|
+
in srgb,
|
|
5473
|
+
var(--agent-gui-warning, var(--state-warning)) 9%,
|
|
5474
|
+
transparent
|
|
5475
|
+
);
|
|
5476
|
+
font-size: 13px;
|
|
5477
|
+
line-height: 18px;
|
|
5478
|
+
}
|
|
5479
|
+
|
|
5480
|
+
.agent-gui-node__provider-setup-notice-icon {
|
|
5481
|
+
flex: 0 0 auto;
|
|
5482
|
+
color: currentColor;
|
|
5483
|
+
}
|
|
5484
|
+
|
|
5485
|
+
.agent-gui-node__provider-setup-notice-text {
|
|
5486
|
+
min-width: 0;
|
|
5487
|
+
overflow-wrap: anywhere;
|
|
5488
|
+
}
|
|
5489
|
+
|
|
5322
5490
|
.agent-gui-node__layout [data-slot="status-dot"],
|
|
5323
5491
|
[data-testid="workspace-agent-message-center"] [data-slot="status-dot"] {
|
|
5324
5492
|
--agent-gui-status-dot-color: var(
|
|
@@ -6508,7 +6676,7 @@ html[data-theme="light"] [data-message-center-item-id].agent-gui-edge-glow {
|
|
|
6508
6676
|
border: 0;
|
|
6509
6677
|
border-radius: 6px;
|
|
6510
6678
|
background: transparent;
|
|
6511
|
-
padding: 0
|
|
6679
|
+
padding: 0 8px;
|
|
6512
6680
|
color: var(--agent-gui-text-secondary);
|
|
6513
6681
|
font-size: 13px;
|
|
6514
6682
|
font-weight: 400;
|
|
@@ -604,7 +604,6 @@ var en = {
|
|
|
604
604
|
usageTokensLabel: "Tokens",
|
|
605
605
|
usageLimitsLabel: "Limits",
|
|
606
606
|
usageCompactAction: "Compact",
|
|
607
|
-
usageCompactTooltip: "Compact the conversation context (/compact)",
|
|
608
607
|
usageAlertWarnMessage: "Context is {{percent}}% full. Consider compacting the conversation.",
|
|
609
608
|
usageAlertCriticalMessage: "Context is {{percent}}% full. Compact now to keep the session going.",
|
|
610
609
|
usageAlertDismiss: "Dismiss",
|
|
@@ -733,7 +732,6 @@ var en = {
|
|
|
733
732
|
searchNoConversations: "No related sessions",
|
|
734
733
|
conversationUnavailable: "Session unavailable.",
|
|
735
734
|
contextPickerBrowseHint: "Search workspace files based on your input",
|
|
736
|
-
contextPickerBrowseAllHint: "Search workspace files based on your input",
|
|
737
735
|
contextPickerBrowseFileHint: "No opened or Agent-generated files yet. Type a file name to search your computer.",
|
|
738
736
|
mentionFileSearchMoreHint: "Type a file name to search for more files on your computer",
|
|
739
737
|
contextPickerBrowseAppHint: "Type to search apps",
|
|
@@ -752,7 +750,7 @@ var en = {
|
|
|
752
750
|
sectionToday: "Today",
|
|
753
751
|
sectionYesterday: "Yesterday",
|
|
754
752
|
sectionEarlier: "Earlier",
|
|
755
|
-
projectSectionEdit: "
|
|
753
|
+
projectSectionEdit: "New session",
|
|
756
754
|
projectSectionMoreActions: "Project actions",
|
|
757
755
|
projectRailCreateProject: "New project",
|
|
758
756
|
projectRailLinkExistingProject: "Link existing project folder",
|
|
@@ -787,6 +785,15 @@ var en = {
|
|
|
787
785
|
activatingSession: "Connecting session...",
|
|
788
786
|
retryActivation: "Retry",
|
|
789
787
|
continueInNewConversation: "New session",
|
|
788
|
+
goalLabel: "Goal",
|
|
789
|
+
goalStatusActive: "Active",
|
|
790
|
+
goalStatusPaused: "Paused",
|
|
791
|
+
goalStatusBlocked: "Blocked",
|
|
792
|
+
goalStatusUsageLimited: "Usage limited",
|
|
793
|
+
goalStatusBudgetLimited: "Budget limited",
|
|
794
|
+
goalStatusComplete: "Complete",
|
|
795
|
+
goalBudgetUsage: "{{used}}/{{budget}} tokens",
|
|
796
|
+
goalClearHint: "Type /goal clear to clear",
|
|
790
797
|
processing: "Planning next moves",
|
|
791
798
|
promptImagesUnsupported: "This agent does not support image input with the current model.",
|
|
792
799
|
visibleErrorStartFailed: "{{provider}} failed to start",
|
|
@@ -840,6 +847,9 @@ var en = {
|
|
|
840
847
|
shortcutEnter: "Enter",
|
|
841
848
|
shortcutCmdEnter: "Cmd + Enter",
|
|
842
849
|
shortcutCtrEnter: "Ctr + Enter",
|
|
850
|
+
openConversationWindow: "Open session in new window",
|
|
851
|
+
showMoreConversations: "Show more",
|
|
852
|
+
showLessConversations: "Show less",
|
|
843
853
|
deleteSession: "Delete session",
|
|
844
854
|
pinSession: "Pin session",
|
|
845
855
|
unpinSession: "Unpin session",
|
|
@@ -860,6 +870,9 @@ var en = {
|
|
|
860
870
|
slashPaletteCommandsGroup: "Commands",
|
|
861
871
|
slashPaletteCapabilitiesGroup: "Capabilities",
|
|
862
872
|
slashPaletteSkillsGroup: "Skills",
|
|
873
|
+
slashPalettePluginsGroup: "Plugins",
|
|
874
|
+
slashPaletteConnectorsGroup: "Connectors",
|
|
875
|
+
slashPaletteMcpGroup: "MCP",
|
|
863
876
|
browserUseCapabilityLabel: "Browser",
|
|
864
877
|
browserUseCapabilityDescription: "Let the agent use a browser.",
|
|
865
878
|
browserUseCapabilityDescriptionAutoConnect: "Current mode: reuse your signed-in Chrome.",
|
|
@@ -914,6 +927,7 @@ var en = {
|
|
|
914
927
|
searchPlaceholder: "Search files and folders",
|
|
915
928
|
selectGroupHint: "Select a folder on the left",
|
|
916
929
|
selectedCount: "{{count}} selected",
|
|
930
|
+
sourceColumn: "Category",
|
|
917
931
|
title: "Pick workspace references",
|
|
918
932
|
workspaceRootGroup: "Workspace"
|
|
919
933
|
},
|
|
@@ -921,7 +935,6 @@ var en = {
|
|
|
921
935
|
projectMissingDescription: "This conversation's working directory no longer exists",
|
|
922
936
|
fileMentionSwitchCategory: "Switch category",
|
|
923
937
|
fileMentionSwitchSelection: "Switch selection",
|
|
924
|
-
mentionFilterAll: "All",
|
|
925
938
|
mentionFilterFile: "Files",
|
|
926
939
|
mentionFilterApp: "Apps",
|
|
927
940
|
mentionFilterSession: "Sessions",
|
|
@@ -2856,7 +2869,7 @@ var zhCN = {
|
|
|
2856
2869
|
permissionSemantics: {
|
|
2857
2870
|
"ask-before-write": {
|
|
2858
2871
|
label: "\u8BF7\u6C42\u6279\u51C6",
|
|
2859
|
-
description: "\u7F16\u8F91\u5916\u90E8\u6587\u4EF6\
|
|
2872
|
+
description: "\u7F16\u8F91\u5916\u90E8\u6587\u4EF6\u548C\u4F7F\u7528\u4E92\u8054\u7F51\u65F6\u59CB\u7EC8\u8BE2\u95EE"
|
|
2860
2873
|
},
|
|
2861
2874
|
"accept-edits": {
|
|
2862
2875
|
label: "\u63A5\u53D7\u7F16\u8F91",
|
|
@@ -2868,11 +2881,11 @@ var zhCN = {
|
|
|
2868
2881
|
},
|
|
2869
2882
|
auto: {
|
|
2870
2883
|
label: "\u66FF\u6211\u5BA1\u6279",
|
|
2871
|
-
description: "\u4EC5\
|
|
2884
|
+
description: "\u4EC5\u5BF9\u68C0\u6D4B\u5230\u7684\u98CE\u9669\u64CD\u4F5C\u8BF7\u6C42\u6279\u51C6"
|
|
2872
2885
|
},
|
|
2873
2886
|
"full-access": {
|
|
2874
|
-
label: "\u5B8C\u5168\u8BBF\u95EE",
|
|
2875
|
-
description: "\u53EF\u4E0D\u53D7\u9650\u5236\u5730\u8BBF\u95EE\u4E92\u8054\u7F51\u548C\
|
|
2887
|
+
label: "\u5B8C\u5168\u8BBF\u95EE\u6743\u9650",
|
|
2888
|
+
description: "\u53EF\u4E0D\u53D7\u9650\u5236\u5730\u8BBF\u95EE\u4E92\u8054\u7F51\u548C\u60A8\u7535\u8111\u4E0A\u7684\u4EFB\u4F55\u6587\u4EF6"
|
|
2876
2889
|
},
|
|
2877
2890
|
unconfigurable: {
|
|
2878
2891
|
label: "\u56FA\u5B9A\u6A21\u5F0F",
|
|
@@ -2883,15 +2896,15 @@ var zhCN = {
|
|
|
2883
2896
|
codex: {
|
|
2884
2897
|
"read-only": {
|
|
2885
2898
|
label: "\u8BF7\u6C42\u6279\u51C6",
|
|
2886
|
-
description: "\u7F16\u8F91\u5916\u90E8\u6587\u4EF6\
|
|
2899
|
+
description: "\u7F16\u8F91\u5916\u90E8\u6587\u4EF6\u548C\u4F7F\u7528\u4E92\u8054\u7F51\u65F6\u59CB\u7EC8\u8BE2\u95EE"
|
|
2887
2900
|
},
|
|
2888
2901
|
auto: {
|
|
2889
2902
|
label: "\u66FF\u6211\u5BA1\u6279",
|
|
2890
|
-
description: "\u4EC5\
|
|
2903
|
+
description: "\u4EC5\u5BF9\u68C0\u6D4B\u5230\u7684\u98CE\u9669\u64CD\u4F5C\u8BF7\u6C42\u6279\u51C6"
|
|
2891
2904
|
},
|
|
2892
2905
|
"full-access": {
|
|
2893
|
-
label: "\u5B8C\u5168\u8BBF\u95EE",
|
|
2894
|
-
description: "\u53EF\u4E0D\u53D7\u9650\u5236\u5730\u8BBF\u95EE\u4E92\u8054\u7F51\u548C\
|
|
2906
|
+
label: "\u5B8C\u5168\u8BBF\u95EE\u6743\u9650",
|
|
2907
|
+
description: "\u53EF\u4E0D\u53D7\u9650\u5236\u5730\u8BBF\u95EE\u4E92\u8054\u7F51\u548C\u60A8\u7535\u8111\u4E0A\u7684\u4EFB\u4F55\u6587\u4EF6"
|
|
2895
2908
|
}
|
|
2896
2909
|
},
|
|
2897
2910
|
nexight: {
|
|
@@ -2980,7 +2993,6 @@ var zhCN = {
|
|
|
2980
2993
|
usageTokensLabel: "Token \u7528\u91CF",
|
|
2981
2994
|
usageLimitsLabel: "\u9650\u989D",
|
|
2982
2995
|
usageCompactAction: "\u538B\u7F29",
|
|
2983
|
-
usageCompactTooltip: "\u538B\u7F29\u4F1A\u8BDD\u4E0A\u4E0B\u6587\uFF08/compact\uFF09",
|
|
2984
2996
|
usageAlertWarnMessage: "\u4E0A\u4E0B\u6587\u5DF2\u4F7F\u7528 {{percent}}%\uFF0C\u5EFA\u8BAE\u538B\u7F29\u4F1A\u8BDD\u3002",
|
|
2985
2997
|
usageAlertCriticalMessage: "\u4E0A\u4E0B\u6587\u5DF2\u4F7F\u7528 {{percent}}%\uFF0C\u8BF7\u7ACB\u5373\u538B\u7F29\u4EE5\u7EE7\u7EED\u4F1A\u8BDD\u3002",
|
|
2986
2998
|
usageAlertDismiss: "\u5173\u95ED\u63D0\u9192",
|
|
@@ -3109,7 +3121,6 @@ var zhCN = {
|
|
|
3109
3121
|
searchNoConversations: "\u6682\u65E0\u76F8\u5173\u4F1A\u8BDD",
|
|
3110
3122
|
conversationUnavailable: "\u4F1A\u8BDD\u4E0D\u53EF\u7528\u3002",
|
|
3111
3123
|
contextPickerBrowseHint: "\u6839\u636E\u4F60\u8F93\u5165\u7684\u5185\u5BB9\u641C\u7D22\u5DE5\u4F5C\u533A\u6587\u4EF6",
|
|
3112
|
-
contextPickerBrowseAllHint: "\u6839\u636E\u4F60\u8F93\u5165\u7684\u5185\u5BB9\u641C\u7D22\u5DE5\u4F5C\u533A\u6587\u4EF6",
|
|
3113
3124
|
contextPickerBrowseFileHint: "\u6682\u65E0\u5DF2\u6253\u5F00\u6216 Agent \u751F\u6210\u7684\u6587\u4EF6\uFF0C\u7EE7\u7EED\u8F93\u5165\u6587\u4EF6\u540D\u53EF\u641C\u7D22\u672C\u673A\u6587\u4EF6",
|
|
3114
3125
|
mentionFileSearchMoreHint: "\u7EE7\u7EED\u8F93\u5165\u6587\u4EF6\u540D\u53EF\u641C\u7D22\u66F4\u591A\u672C\u673A\u6587\u4EF6",
|
|
3115
3126
|
contextPickerBrowseAppHint: "\u8F93\u5165\u5185\u5BB9\u4EE5\u641C\u7D22\u5E94\u7528",
|
|
@@ -3128,7 +3139,7 @@ var zhCN = {
|
|
|
3128
3139
|
sectionToday: "\u4ECA\u5929",
|
|
3129
3140
|
sectionYesterday: "\u6628\u5929",
|
|
3130
3141
|
sectionEarlier: "\u66F4\u65E9",
|
|
3131
|
-
projectSectionEdit: "\
|
|
3142
|
+
projectSectionEdit: "\u65B0\u5EFA\u4F1A\u8BDD",
|
|
3132
3143
|
projectSectionMoreActions: "\u9879\u76EE\u64CD\u4F5C",
|
|
3133
3144
|
projectRailCreateProject: "\u65B0\u5EFA\u9879\u76EE",
|
|
3134
3145
|
projectRailLinkExistingProject: "\u5173\u8054\u5DF2\u6709\u9879\u76EE\u6587\u4EF6",
|
|
@@ -3163,6 +3174,15 @@ var zhCN = {
|
|
|
3163
3174
|
activatingSession: "\u6B63\u5728\u8FDE\u63A5\u4F1A\u8BDD...",
|
|
3164
3175
|
retryActivation: "\u91CD\u8BD5",
|
|
3165
3176
|
continueInNewConversation: "\u53BB\u65B0\u4F1A\u8BDD",
|
|
3177
|
+
goalLabel: "\u76EE\u6807",
|
|
3178
|
+
goalStatusActive: "\u8FDB\u884C\u4E2D",
|
|
3179
|
+
goalStatusPaused: "\u5DF2\u6682\u505C",
|
|
3180
|
+
goalStatusBlocked: "\u5DF2\u963B\u585E",
|
|
3181
|
+
goalStatusUsageLimited: "\u7528\u91CF\u53D7\u9650",
|
|
3182
|
+
goalStatusBudgetLimited: "\u9884\u7B97\u53D7\u9650",
|
|
3183
|
+
goalStatusComplete: "\u5DF2\u5B8C\u6210",
|
|
3184
|
+
goalBudgetUsage: "{{used}}/{{budget}} tokens",
|
|
3185
|
+
goalClearHint: "\u8F93\u5165 /goal clear \u6E05\u9664",
|
|
3166
3186
|
processing: "\u6B63\u5728\u89C4\u5212\u4E0B\u4E00\u6B65",
|
|
3167
3187
|
promptImagesUnsupported: "\u5F53\u524D\u6A21\u578B\u4E0D\u652F\u6301\u56FE\u7247\u8F93\u5165\u3002",
|
|
3168
3188
|
visibleErrorStartFailed: "{{provider}} \u542F\u52A8\u5931\u8D25",
|
|
@@ -3216,6 +3236,9 @@ var zhCN = {
|
|
|
3216
3236
|
shortcutEnter: "Enter",
|
|
3217
3237
|
shortcutCmdEnter: "Cmd + Enter",
|
|
3218
3238
|
shortcutCtrEnter: "Ctr + Enter",
|
|
3239
|
+
openConversationWindow: "\u5728\u65B0\u7A97\u53E3\u6253\u5F00\u4F1A\u8BDD",
|
|
3240
|
+
showMoreConversations: "\u663E\u793A\u66F4\u591A",
|
|
3241
|
+
showLessConversations: "\u6536\u8D77",
|
|
3219
3242
|
deleteSession: "\u5220\u9664\u4F1A\u8BDD",
|
|
3220
3243
|
pinSession: "\u7F6E\u9876\u4F1A\u8BDD",
|
|
3221
3244
|
unpinSession: "\u53D6\u6D88\u7F6E\u9876",
|
|
@@ -3236,6 +3259,9 @@ var zhCN = {
|
|
|
3236
3259
|
slashPaletteCommandsGroup: "\u547D\u4EE4",
|
|
3237
3260
|
slashPaletteCapabilitiesGroup: "\u80FD\u529B",
|
|
3238
3261
|
slashPaletteSkillsGroup: "\u6280\u80FD",
|
|
3262
|
+
slashPalettePluginsGroup: "\u63D2\u4EF6",
|
|
3263
|
+
slashPaletteConnectorsGroup: "\u8FDE\u63A5\u5668",
|
|
3264
|
+
slashPaletteMcpGroup: "MCP",
|
|
3239
3265
|
browserUseCapabilityLabel: "\u6D4F\u89C8\u5668",
|
|
3240
3266
|
browserUseCapabilityDescription: "\u8BA9 Agent \u4F7F\u7528\u6D4F\u89C8\u5668\u3002",
|
|
3241
3267
|
browserUseCapabilityDescriptionAutoConnect: "\u5F53\u524D\u914D\u7F6E\uFF1A\u590D\u7528\u5DF2\u767B\u5F55\u7684 Chrome\u3002",
|
|
@@ -3291,13 +3317,13 @@ var zhCN = {
|
|
|
3291
3317
|
selectGroupHint: "\u4ECE\u5DE6\u4FA7\u9009\u62E9\u4E00\u4E2A\u76EE\u5F55",
|
|
3292
3318
|
selectedCount: "\u5DF2\u9009\u62E9 {{count}} \u9879",
|
|
3293
3319
|
title: "\u9009\u62E9\u5DE5\u4F5C\u533A\u5F15\u7528",
|
|
3320
|
+
sourceColumn: "\u5206\u7C7B",
|
|
3294
3321
|
workspaceRootGroup: "\u5DE5\u4F5C\u533A"
|
|
3295
3322
|
},
|
|
3296
3323
|
projectLocked: "\u4F1A\u8BDD\u5F00\u59CB\u540E\u9879\u76EE\u4E0D\u53EF\u66F4\u6539",
|
|
3297
3324
|
projectMissingDescription: "\u6B64\u5BF9\u8BDD\u7684\u5DE5\u4F5C\u76EE\u5F55\u5DF2\u4E0D\u5B58\u5728",
|
|
3298
3325
|
fileMentionSwitchCategory: "\u5207\u6362\u5206\u7C7B",
|
|
3299
3326
|
fileMentionSwitchSelection: "\u5207\u6362\u9009\u4E2D",
|
|
3300
|
-
mentionFilterAll: "\u5168\u90E8",
|
|
3301
3327
|
mentionFilterFile: "\u6587\u4EF6",
|
|
3302
3328
|
mentionFilterApp: "\u5E94\u7528",
|
|
3303
3329
|
mentionFilterSession: "\u4F1A\u8BDD",
|
|
@@ -4866,4 +4892,4 @@ export {
|
|
|
4866
4892
|
AgentGuiI18nProvider,
|
|
4867
4893
|
useTranslation
|
|
4868
4894
|
};
|
|
4869
|
-
//# sourceMappingURL=chunk-
|
|
4895
|
+
//# sourceMappingURL=chunk-65YMY2M3.js.map
|