mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 05:45:51 +00:00
每次 API 请求后自动计算缓存命中率,低于阈值(默认 80%)时在对话流中显示黄色警告消息。 同时更新 /context 命令输出中显示缓存命中率。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
441 lines
16 KiB
TypeScript
441 lines
16 KiB
TypeScript
import { feature } from 'bun:bundle';
|
|
import * as React from 'react';
|
|
import { Box, Text } from '@anthropic/ink';
|
|
import type { ContextData } from '../utils/analyzeContext.js';
|
|
import { generateContextSuggestions } from '../utils/contextSuggestions.js';
|
|
import { getDisplayPath } from '../utils/file.js';
|
|
import { formatTokens } from '../utils/format.js';
|
|
import { getSourceDisplayName, type SettingSource } from '../utils/settings/constants.js';
|
|
import { plural } from '../utils/stringUtils.js';
|
|
import { ContextSuggestions } from './ContextSuggestions.js';
|
|
|
|
const RESERVED_CATEGORY_NAME = 'Autocompact buffer';
|
|
|
|
/**
|
|
* One-liner for the legend header showing what context-collapse has done.
|
|
* Returns null when nothing's summarized/staged so we don't add visual
|
|
* noise in the common case. This is the one place a user can see that
|
|
* their context was rewritten — the <collapsed> placeholders are isMeta
|
|
* and don't appear in the conversation view.
|
|
*/
|
|
function CollapseStatus(): React.ReactNode {
|
|
if (feature('CONTEXT_COLLAPSE')) {
|
|
/* eslint-disable @typescript-eslint/no-require-imports */
|
|
const { getStats, isContextCollapseEnabled } =
|
|
require('../services/contextCollapse/index.js') as typeof import('../services/contextCollapse/index.js');
|
|
/* eslint-enable @typescript-eslint/no-require-imports */
|
|
if (!isContextCollapseEnabled()) return null;
|
|
|
|
const s = getStats();
|
|
const { health: h } = s;
|
|
|
|
const parts: string[] = [];
|
|
if (s.collapsedSpans > 0) {
|
|
parts.push(`${s.collapsedSpans} ${plural(s.collapsedSpans, 'span')} summarized (${s.collapsedMessages} msgs)`);
|
|
}
|
|
if (s.stagedSpans > 0) parts.push(`${s.stagedSpans} staged`);
|
|
const summary =
|
|
parts.length > 0
|
|
? parts.join(', ')
|
|
: h.totalSpawns > 0
|
|
? `${h.totalSpawns} ${plural(h.totalSpawns, 'spawn')}, nothing staged yet`
|
|
: 'waiting for first trigger';
|
|
|
|
let line2: React.ReactNode = null;
|
|
if (h.totalErrors > 0) {
|
|
line2 = (
|
|
<Text color="warning">
|
|
Collapse errors: {h.totalErrors}/{h.totalSpawns} spawns failed
|
|
{h.lastError ? ` (last: ${h.lastError.slice(0, 60)})` : ''}
|
|
</Text>
|
|
);
|
|
} else if (h.emptySpawnWarningEmitted) {
|
|
line2 = <Text color="warning">Collapse idle: {h.totalEmptySpawns} consecutive empty runs</Text>;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Text dimColor>Context strategy: collapse ({summary})</Text>
|
|
{line2}
|
|
</>
|
|
);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
// Order for displaying source groups: Project > User > Managed > Plugin > Built-in
|
|
const SOURCE_DISPLAY_ORDER = ['Project', 'User', 'Managed', 'Plugin', 'Built-in'];
|
|
|
|
/** Group items by source type for display, sorted by tokens descending within each group */
|
|
function groupBySource<T extends { source: SettingSource | 'plugin' | 'built-in'; tokens: number }>(
|
|
items: T[],
|
|
): Map<string, T[]> {
|
|
const groups = new Map<string, T[]>();
|
|
for (const item of items) {
|
|
const key = getSourceDisplayName(item.source);
|
|
const existing = groups.get(key) || [];
|
|
existing.push(item);
|
|
groups.set(key, existing);
|
|
}
|
|
// Sort each group by tokens descending
|
|
for (const [key, group] of groups.entries()) {
|
|
groups.set(
|
|
key,
|
|
group.sort((a, b) => b.tokens - a.tokens),
|
|
);
|
|
}
|
|
// Return groups in consistent order
|
|
const orderedGroups = new Map<string, T[]>();
|
|
for (const source of SOURCE_DISPLAY_ORDER) {
|
|
const group = groups.get(source);
|
|
if (group) {
|
|
orderedGroups.set(source, group);
|
|
}
|
|
}
|
|
return orderedGroups;
|
|
}
|
|
|
|
interface Props {
|
|
data: ContextData;
|
|
}
|
|
|
|
export function ContextVisualization({ data }: Props): React.ReactNode {
|
|
const {
|
|
categories,
|
|
totalTokens,
|
|
rawMaxTokens,
|
|
percentage,
|
|
gridRows,
|
|
model,
|
|
memoryFiles,
|
|
mcpTools,
|
|
deferredBuiltinTools = [],
|
|
systemTools,
|
|
systemPromptSections,
|
|
agents,
|
|
skills,
|
|
messageBreakdown,
|
|
cacheHitRate,
|
|
cacheThreshold,
|
|
} = data;
|
|
|
|
// Filter out categories with 0 tokens for the legend, and exclude Free space, Autocompact buffer, and deferred
|
|
const visibleCategories = categories.filter(
|
|
cat => cat.tokens > 0 && cat.name !== 'Free space' && cat.name !== RESERVED_CATEGORY_NAME && !cat.isDeferred,
|
|
);
|
|
// Check if MCP tools are deferred (loaded on-demand via tool search)
|
|
const hasDeferredMcpTools = categories.some(cat => cat.isDeferred && cat.name.includes('MCP'));
|
|
// Check if builtin tools are deferred
|
|
const hasDeferredBuiltinTools = deferredBuiltinTools.length > 0;
|
|
const autocompactCategory = categories.find(cat => cat.name === RESERVED_CATEGORY_NAME);
|
|
|
|
return (
|
|
<Box flexDirection="column" paddingLeft={1}>
|
|
<Text bold>Context Usage</Text>
|
|
<Box flexDirection="row" gap={2}>
|
|
{/* Fixed size grid */}
|
|
<Box flexDirection="column" flexShrink={0}>
|
|
{gridRows.map((row, rowIndex) => (
|
|
<Box key={rowIndex} flexDirection="row" marginLeft={-1}>
|
|
{row.map((square, colIndex) => {
|
|
if (square.categoryName === 'Free space') {
|
|
return (
|
|
<Text key={colIndex} dimColor>
|
|
{'⛶ '}
|
|
</Text>
|
|
);
|
|
}
|
|
if (square.categoryName === RESERVED_CATEGORY_NAME) {
|
|
return (
|
|
<Text key={colIndex} color={square.color}>
|
|
{'⛝ '}
|
|
</Text>
|
|
);
|
|
}
|
|
return (
|
|
<Text key={colIndex} color={square.color}>
|
|
{square.squareFullness >= 0.7 ? '⛁ ' : '⛀ '}
|
|
</Text>
|
|
);
|
|
})}
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
|
|
{/* Legend to the right */}
|
|
<Box flexDirection="column" gap={0} flexShrink={0}>
|
|
<Text dimColor>
|
|
{model} · {formatTokens(totalTokens)}/{formatTokens(rawMaxTokens)} tokens ({percentage}%)
|
|
</Text>
|
|
<CollapseStatus />
|
|
{cacheHitRate !== undefined && cacheThreshold !== undefined && (
|
|
<Text color={cacheHitRate < cacheThreshold ? 'warning' : undefined}>
|
|
Cache hit rate: {cacheHitRate.toFixed(0)}%
|
|
{cacheHitRate < cacheThreshold ? ` (below ${cacheThreshold}% threshold)` : ''}
|
|
</Text>
|
|
)}
|
|
<Text> </Text>
|
|
<Text dimColor italic>
|
|
Estimated usage by category
|
|
</Text>
|
|
{visibleCategories.map((cat, index) => {
|
|
const tokenDisplay = formatTokens(cat.tokens);
|
|
// Show "N/A" for deferred categories since they don't count toward context
|
|
const percentDisplay = cat.isDeferred ? 'N/A' : `${((cat.tokens / rawMaxTokens) * 100).toFixed(1)}%`;
|
|
const isReserved = cat.name === RESERVED_CATEGORY_NAME;
|
|
const displayName = cat.name;
|
|
// Deferred categories don't appear in grid, so show blank instead of symbol
|
|
const symbol = cat.isDeferred ? ' ' : isReserved ? '⛝' : '⛁';
|
|
|
|
return (
|
|
<Box key={index}>
|
|
<Text color={cat.color}>{symbol}</Text>
|
|
<Text> {displayName}: </Text>
|
|
<Text dimColor>
|
|
{tokenDisplay} tokens ({percentDisplay})
|
|
</Text>
|
|
</Box>
|
|
);
|
|
})}
|
|
{(categories.find(c => c.name === 'Free space')?.tokens ?? 0) > 0 && (
|
|
<Box>
|
|
<Text dimColor>⛶</Text>
|
|
<Text> Free space: </Text>
|
|
<Text dimColor>
|
|
{formatTokens(categories.find(c => c.name === 'Free space')?.tokens || 0)} (
|
|
{(((categories.find(c => c.name === 'Free space')?.tokens || 0) / rawMaxTokens) * 100).toFixed(1)}
|
|
%)
|
|
</Text>
|
|
</Box>
|
|
)}
|
|
{autocompactCategory && autocompactCategory.tokens > 0 && (
|
|
<Box>
|
|
<Text color={autocompactCategory.color}>⛝</Text>
|
|
<Text dimColor> {autocompactCategory.name}: </Text>
|
|
<Text dimColor>
|
|
{formatTokens(autocompactCategory.tokens)} tokens (
|
|
{((autocompactCategory.tokens / rawMaxTokens) * 100).toFixed(1)}
|
|
%)
|
|
</Text>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
</Box>
|
|
|
|
<Box flexDirection="column" marginLeft={-1}>
|
|
{mcpTools.length > 0 && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Box>
|
|
<Text bold>MCP tools</Text>
|
|
<Text dimColor> · /mcp{hasDeferredMcpTools ? ' (loaded on-demand)' : ''}</Text>
|
|
</Box>
|
|
{/* Show loaded tools first */}
|
|
{mcpTools.some(t => t.isLoaded) && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Text dimColor>Loaded</Text>
|
|
{mcpTools
|
|
.filter(t => t.isLoaded)
|
|
.map((tool, i) => (
|
|
<Box key={i}>
|
|
<Text>└ {tool.name}: </Text>
|
|
<Text dimColor>{formatTokens(tool.tokens)} tokens</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
)}
|
|
{/* Show available (deferred) tools */}
|
|
{hasDeferredMcpTools && mcpTools.some(t => !t.isLoaded) && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Text dimColor>Available</Text>
|
|
{mcpTools
|
|
.filter(t => !t.isLoaded)
|
|
.map((tool, i) => (
|
|
<Box key={i}>
|
|
<Text dimColor>└ {tool.name}</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
)}
|
|
{/* Show all tools normally when not deferred */}
|
|
{!hasDeferredMcpTools &&
|
|
mcpTools.map((tool, i) => (
|
|
<Box key={i}>
|
|
<Text>└ {tool.name}: </Text>
|
|
<Text dimColor>{formatTokens(tool.tokens)} tokens</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
)}
|
|
|
|
{/* Show builtin tools: always-loaded + deferred (ant-only) */}
|
|
{((systemTools && systemTools.length > 0) || hasDeferredBuiltinTools) && process.env.USER_TYPE === 'ant' && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Box>
|
|
<Text bold>[ANT-ONLY] System tools</Text>
|
|
{hasDeferredBuiltinTools && <Text dimColor> (some loaded on-demand)</Text>}
|
|
</Box>
|
|
{/* Always-loaded + deferred-but-loaded tools */}
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Text dimColor>Loaded</Text>
|
|
{systemTools?.map((tool, i) => (
|
|
<Box key={`sys-${i}`}>
|
|
<Text>└ {tool.name}: </Text>
|
|
<Text dimColor>{formatTokens(tool.tokens)} tokens</Text>
|
|
</Box>
|
|
))}
|
|
{deferredBuiltinTools
|
|
.filter(t => t.isLoaded)
|
|
.map((tool, i) => (
|
|
<Box key={`def-${i}`}>
|
|
<Text>└ {tool.name}: </Text>
|
|
<Text dimColor>{formatTokens(tool.tokens)} tokens</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
{/* Deferred (not yet loaded) tools */}
|
|
{hasDeferredBuiltinTools && deferredBuiltinTools.some(t => !t.isLoaded) && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Text dimColor>Available</Text>
|
|
{deferredBuiltinTools
|
|
.filter(t => !t.isLoaded)
|
|
.map((tool, i) => (
|
|
<Box key={i}>
|
|
<Text dimColor>└ {tool.name}</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
)}
|
|
|
|
{systemPromptSections && systemPromptSections.length > 0 && process.env.USER_TYPE === 'ant' && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Text bold>[ANT-ONLY] System prompt sections</Text>
|
|
{systemPromptSections.map((section, i) => (
|
|
<Box key={i}>
|
|
<Text>└ {section.name}: </Text>
|
|
<Text dimColor>{formatTokens(section.tokens)} tokens</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
)}
|
|
|
|
{agents.length > 0 && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Box>
|
|
<Text bold>Custom agents</Text>
|
|
<Text dimColor> · /agents</Text>
|
|
</Box>
|
|
{Array.from(groupBySource(agents).entries()).map(([sourceDisplay, sourceAgents]) => (
|
|
<Box key={sourceDisplay} flexDirection="column" marginTop={1}>
|
|
<Text dimColor>{sourceDisplay}</Text>
|
|
{sourceAgents.map((agent, i) => (
|
|
<Box key={i}>
|
|
<Text>└ {agent.agentType}: </Text>
|
|
<Text dimColor>{formatTokens(agent.tokens)} tokens</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
)}
|
|
|
|
{memoryFiles.length > 0 && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Box>
|
|
<Text bold>Memory files</Text>
|
|
<Text dimColor> · /memory</Text>
|
|
</Box>
|
|
{memoryFiles.map((file, i) => (
|
|
<Box key={i}>
|
|
<Text>└ {getDisplayPath(file.path)}: </Text>
|
|
<Text dimColor>{formatTokens(file.tokens)} tokens</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
)}
|
|
|
|
{skills && skills.tokens > 0 && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Box>
|
|
<Text bold>Skills</Text>
|
|
<Text dimColor> · /skills</Text>
|
|
</Box>
|
|
{Array.from(groupBySource(skills.skillFrontmatter).entries()).map(([sourceDisplay, sourceSkills]) => (
|
|
<Box key={sourceDisplay} flexDirection="column" marginTop={1}>
|
|
<Text dimColor>{sourceDisplay}</Text>
|
|
{sourceSkills.map((skill, i) => (
|
|
<Box key={i}>
|
|
<Text>└ {skill.name}: </Text>
|
|
<Text dimColor>{formatTokens(skill.tokens)} tokens</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
)}
|
|
|
|
{messageBreakdown && process.env.USER_TYPE === 'ant' && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Text bold>[ANT-ONLY] Message breakdown</Text>
|
|
|
|
<Box flexDirection="column" marginLeft={1}>
|
|
<Box>
|
|
<Text>Tool calls: </Text>
|
|
<Text dimColor>{formatTokens(messageBreakdown.toolCallTokens)} tokens</Text>
|
|
</Box>
|
|
|
|
<Box>
|
|
<Text>Tool results: </Text>
|
|
<Text dimColor>{formatTokens(messageBreakdown.toolResultTokens)} tokens</Text>
|
|
</Box>
|
|
|
|
<Box>
|
|
<Text>Attachments: </Text>
|
|
<Text dimColor>{formatTokens(messageBreakdown.attachmentTokens)} tokens</Text>
|
|
</Box>
|
|
|
|
<Box>
|
|
<Text>Assistant messages (non-tool): </Text>
|
|
<Text dimColor>{formatTokens(messageBreakdown.assistantMessageTokens)} tokens</Text>
|
|
</Box>
|
|
|
|
<Box>
|
|
<Text>User messages (non-tool-result): </Text>
|
|
<Text dimColor>{formatTokens(messageBreakdown.userMessageTokens)} tokens</Text>
|
|
</Box>
|
|
</Box>
|
|
|
|
{messageBreakdown.toolCallsByType.length > 0 && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Text bold>[ANT-ONLY] Top tools</Text>
|
|
{messageBreakdown.toolCallsByType.slice(0, 5).map((tool, i) => (
|
|
<Box key={i} marginLeft={1}>
|
|
<Text>└ {tool.name}: </Text>
|
|
<Text dimColor>
|
|
calls {formatTokens(tool.callTokens)}, results {formatTokens(tool.resultTokens)}
|
|
</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
)}
|
|
|
|
{messageBreakdown.attachmentsByType.length > 0 && (
|
|
<Box flexDirection="column" marginTop={1}>
|
|
<Text bold>[ANT-ONLY] Top attachments</Text>
|
|
{messageBreakdown.attachmentsByType.slice(0, 5).map((attachment, i) => (
|
|
<Box key={i} marginLeft={1}>
|
|
<Text>└ {attachment.name}: </Text>
|
|
<Text dimColor>{formatTokens(attachment.tokens)} tokens</Text>
|
|
</Box>
|
|
))}
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
<ContextSuggestions suggestions={generateContextSuggestions(data)} />
|
|
</Box>
|
|
);
|
|
}
|