mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 22:05:50 +00:00
* style(B1-1): 格式化 ink/buddy/cli/context/screens/tasks/services/keybindings/state (43 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 修复了 Box.tsx 和 ScrollBox.tsx 中无效的 global.d.ts import。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style(B1-2): 格式化 commands (79 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style(B1-3): 格式化 components/messages,permissions,mcp,sandbox,shell (104 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style(B1-4): 格式化 components/PromptInput,FeedbackSurvey,tasks,agents,skills,design-system,wizard (73 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style(B1-5): 格式化 components其余 + hooks + tools (232 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style(B1-6): 格式化 main/entrypoints/utils/moreright (21 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * docs: 更新 README,新增 Run.ps1/TODO.md,删除 V6.md - README.md: 大幅重写,更详细版本历史和配置示例 - Run.ps1: 新增 Windows 启动脚本 - TODO.md: 新增包完成清单 - V6.md: 删除(架构重构规划已不适用) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: 修复以前的问题 * fix: 修复 login 面板的问题 --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
120 lines
4.6 KiB
TypeScript
120 lines
4.6 KiB
TypeScript
import { feature } from 'bun:bundle'
|
|
import type { TextBlockParam } from '@anthropic-ai/sdk/resources/index.mjs'
|
|
import React, { useContext, useMemo } from 'react'
|
|
import { getKairosActive, getUserMsgOptIn } from '../../bootstrap/state.js'
|
|
import { Box } from '../../ink.js'
|
|
import { getFeatureValue_CACHED_MAY_BE_STALE } from '../../services/analytics/growthbook.js'
|
|
import { useAppState } from '../../state/AppState.js'
|
|
import { isEnvTruthy } from '../../utils/envUtils.js'
|
|
import { logError } from '../../utils/log.js'
|
|
import { countCharInString } from '../../utils/stringUtils.js'
|
|
import { MessageActionsSelectedContext } from '../messageActions.js'
|
|
import { HighlightedThinkingText } from './HighlightedThinkingText.js'
|
|
|
|
type Props = {
|
|
addMargin: boolean
|
|
param: TextBlockParam
|
|
isTranscriptMode?: boolean
|
|
timestamp?: string
|
|
}
|
|
|
|
// Hard cap on displayed prompt text. Piping large files via stdin
|
|
// (e.g. `cat 11k-line-file | claude`) creates a single user message whose
|
|
// <Text> node the fullscreen Ink renderer must wrap/output on every frame,
|
|
// causing 500ms+ keystroke latency. React.memo skips the React render but
|
|
// the Ink output pass still iterates the full mounted text. Non-fullscreen
|
|
// avoids this via <Static> (print-and-forget to terminal scrollback).
|
|
// Head+tail because `{ cat file; echo prompt; } | claude` puts the user's
|
|
// actual question at the end.
|
|
const MAX_DISPLAY_CHARS = 10_000
|
|
const TRUNCATE_HEAD_CHARS = 2_500
|
|
const TRUNCATE_TAIL_CHARS = 2_500
|
|
|
|
export function UserPromptMessage({
|
|
addMargin,
|
|
param: { text },
|
|
isTranscriptMode,
|
|
timestamp,
|
|
}: Props): React.ReactNode {
|
|
// REPL.tsx passes isBriefOnly={viewedTeammateTask ? false : isBriefOnly}
|
|
// but that prop isn't threaded this deep — replicate the override by
|
|
// reading viewingAgentTaskId directly. Computed here (not in the child)
|
|
// so the parent Box can drop its backgroundColor: in brief mode the
|
|
// child renders a label-style layout, and Box backgroundColor paints
|
|
// behind children unconditionally (they can't opt out).
|
|
//
|
|
// Hooks stay INSIDE feature() ternaries so external builds don't pay
|
|
// the per-scrollback-message store subscription (useSyncExternalStore
|
|
// bypasses React.memo). Runtime-gated like isBriefEnabled() but inlined
|
|
// to avoid pulling BriefTool.ts → prompt.ts tool-name strings into
|
|
// external builds.
|
|
const isBriefOnly =
|
|
feature('KAIROS') || feature('KAIROS_BRIEF')
|
|
? // biome-ignore lint/correctness/useHookAtTopLevel: feature() is a compile-time constant
|
|
useAppState(s => s.isBriefOnly)
|
|
: false
|
|
const viewingAgentTaskId =
|
|
feature('KAIROS') || feature('KAIROS_BRIEF')
|
|
? // biome-ignore lint/correctness/useHookAtTopLevel: feature() is a compile-time constant
|
|
useAppState(s => s.viewingAgentTaskId)
|
|
: null
|
|
// Hoisted to mount-time — per-message component, re-renders on every scroll.
|
|
const briefEnvEnabled =
|
|
feature('KAIROS') || feature('KAIROS_BRIEF')
|
|
? // biome-ignore lint/correctness/useHookAtTopLevel: feature() is a compile-time constant
|
|
useMemo(() => isEnvTruthy(process.env.CLAUDE_CODE_BRIEF), [])
|
|
: false
|
|
const useBriefLayout =
|
|
feature('KAIROS') || feature('KAIROS_BRIEF')
|
|
? (getKairosActive() ||
|
|
(getUserMsgOptIn() &&
|
|
(briefEnvEnabled ||
|
|
getFeatureValue_CACHED_MAY_BE_STALE(
|
|
'tengu_kairos_brief',
|
|
false,
|
|
)))) &&
|
|
isBriefOnly &&
|
|
!isTranscriptMode &&
|
|
!viewingAgentTaskId
|
|
: false
|
|
|
|
// Truncate before the early return so the hook order is stable.
|
|
const displayText = useMemo(() => {
|
|
if (text.length <= MAX_DISPLAY_CHARS) return text
|
|
const head = text.slice(0, TRUNCATE_HEAD_CHARS)
|
|
const tail = text.slice(-TRUNCATE_TAIL_CHARS)
|
|
const hiddenLines =
|
|
countCharInString(text, '\n', TRUNCATE_HEAD_CHARS) -
|
|
countCharInString(tail, '\n')
|
|
return `${head}\n… +${hiddenLines} lines …\n${tail}`
|
|
}, [text])
|
|
|
|
const isSelected = useContext(MessageActionsSelectedContext)
|
|
|
|
if (!text) {
|
|
logError(new Error('No content found in user prompt message'))
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<Box
|
|
flexDirection="column"
|
|
marginTop={addMargin ? 1 : 0}
|
|
backgroundColor={
|
|
isSelected
|
|
? 'messageActionsBackground'
|
|
: useBriefLayout
|
|
? undefined
|
|
: 'userMessageBackground'
|
|
}
|
|
paddingRight={useBriefLayout ? 0 : 1}
|
|
>
|
|
<HighlightedThinkingText
|
|
text={displayText}
|
|
useBriefLayout={useBriefLayout}
|
|
timestamp={useBriefLayout ? timestamp : undefined}
|
|
/>
|
|
</Box>
|
|
)
|
|
}
|