From b545fc8aff83562939c665513a838718c75c2b80 Mon Sep 17 00:00:00 2001 From: claude-code-best Date: Sun, 14 Jun 2026 14:41:43 +0800 Subject: [PATCH] =?UTF-8?q?fix(effort):=20=E9=9D=A2=E6=9D=BF=E6=96=87?= =?UTF-8?q?=E5=AD=97=E6=94=B9=E7=B4=AB=E8=89=B2=EF=BC=8CULTRACODE=5FHINT?= =?UTF-8?q?=20=E8=8B=B1=E6=96=87=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 颜色:theme.claude(橙)→ theme.purple_FOR_SUBAGENTS_ONLY(Purple 600, rgb(147,51,234)), 覆盖标题、Faster/Smarter、▲、档位名 - ULTRACODE_HINT:中文 → 英文 "ultracode is not an effort level. Use /ultracode to start a multi-agent workflow." Co-Authored-By: glm-5.2 --- src/components/EffortPanel/EffortPanel.tsx | 10 +++++----- src/components/EffortPanel/effortPanelState.ts | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/EffortPanel/EffortPanel.tsx b/src/components/EffortPanel/EffortPanel.tsx index 7fd42ea91..bf17af014 100644 --- a/src/components/EffortPanel/EffortPanel.tsx +++ b/src/components/EffortPanel/EffortPanel.tsx @@ -72,13 +72,13 @@ export function EffortPanel({ appStateEffort, onDone }: Props): React.ReactNode return ( - + Effort {envActive && {`⚠ CLAUDE_CODE_EFFORT_LEVEL=${envRaw} overrides this session`}} - Faster - Smarter + Faster + Smarter {/* 分隔线 */} {'─'.repeat(PANEL_WIDTH)} @@ -86,7 +86,7 @@ export function EffortPanel({ appStateEffort, onDone }: Props): React.ReactNode {PANEL_POSITIONS.map(p => ( - + {cursor === p ? '▲' : ' '} @@ -96,7 +96,7 @@ export function EffortPanel({ appStateEffort, onDone }: Props): React.ReactNode {PANEL_POSITIONS.map(p => ( - + {p} diff --git a/src/components/EffortPanel/effortPanelState.ts b/src/components/EffortPanel/effortPanelState.ts index 9bbd75b33..fb5925236 100644 --- a/src/components/EffortPanel/effortPanelState.ts +++ b/src/components/EffortPanel/effortPanelState.ts @@ -106,7 +106,7 @@ export type ApplyFn = (cursor: PanelPosition) => { } export const ULTRACODE_HINT = - 'ultracode 不是 effort 档位。请使用 /ultracode 启动多 agent workflow。' + 'ultracode is not an effort level. Use /ultracode to start a multi-agent workflow.' export const CANCEL_MESSAGE = 'Effort unchanged.'