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 '@anthropic/ink'; 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 // 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 (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 must always be called unconditionally to satisfy React rules. // The feature gate is applied to the computed value, not the hook call. const isBriefOnlyState = useAppState(s => s.isBriefOnly); const viewingAgentTaskIdState = useAppState(s => s.viewingAgentTaskId); // Hoisted to mount-time — per-message component, re-renders on every scroll. const briefEnvEnabledState = useMemo(() => isEnvTruthy(process.env.CLAUDE_CODE_BRIEF), []); const useBriefLayout = feature('KAIROS') || feature('KAIROS_BRIEF') ? (getKairosActive() || (getUserMsgOptIn() && (briefEnvEnabledState || getFeatureValue_CACHED_MAY_BE_STALE('tengu_kairos_brief', false)))) && isBriefOnlyState && !isTranscriptMode && !viewingAgentTaskIdState : 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 ( ); }