mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-19 06:45:50 +00:00
* feat: 第一版大重构 * fix: 修复类型问题 * chore: 更新版本到 1.3.2 * Add brave as alternative WebSearchTool * fix: 修正顺序 * fix: 修复对穷鬼模式的 auto dream 和 session memory 越过 * feat: 穷鬼模式去除 session-summary * feat: 创建 builtin-tools 包,搬运所有工具实现 将 src/tools/ 下的全部 60 个工具目录迁移至 packages/builtin-tools/src/tools/, 内部导入路径已更新为 src/ alias 模式。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: 更新 src/ 中所有工具引用至 builtin-tools 包,删除 src/tools/ - src/tools.ts 及 178 个 src/ 文件的 import 路径从 ./tools/ 改为 builtin-tools/tools/ - 删除 src/tools/ 整个目录(已迁移至 packages/builtin-tools/) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: 添加 builtin-tools 路径别名至 tsconfig,更新 bun.lock - tsconfig.json 新增 builtin-tools/* 和 builtin-tools 路径映射 - 新增 packages/builtin-tools/src 至 include Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: 为 builtin-tools、mcp-client、agent-tools 添加 @claude-code-best 作用域前缀 所有包名及 import 路径统一添加 @claude-code-best/ 前缀: - builtin-tools → @claude-code-best/builtin-tools - mcp-client → @claude-code-best/mcp-client - agent-tools → @claude-code-best/agent-tools Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: 修复 node 环境没有 bun 的问题 --------- Co-authored-by: Eric-Guo <eric.guocz@gmail.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
203 lines
5.8 KiB
TypeScript
203 lines
5.8 KiB
TypeScript
import type { ToolResultBlockParam } from '@anthropic-ai/sdk/resources/index.mjs'
|
|
import * as React from 'react'
|
|
import { extractTag } from 'src/utils/messages.js'
|
|
import { FallbackToolUseErrorMessage } from 'src/components/FallbackToolUseErrorMessage.js'
|
|
|
|
import { MessageResponse } from 'src/components/MessageResponse.js'
|
|
import { Text } from '@anthropic/ink'
|
|
import { FilePathLink } from 'src/components/FilePathLink.js'
|
|
import { FILE_NOT_FOUND_CWD_NOTE, getDisplayPath } from 'src/utils/file.js'
|
|
import { formatFileSize } from 'src/utils/format.js'
|
|
import { getPlansDirectory } from 'src/utils/plans.js'
|
|
import { getTaskOutputDir } from 'src/utils/task/diskOutput.js'
|
|
import type { Input, Output } from './FileReadTool.js'
|
|
|
|
/**
|
|
* Check if a file path is an agent output file and extract the task ID.
|
|
* Agent output files follow the pattern: {projectTempDir}/tasks/{taskId}.output
|
|
*/
|
|
function getAgentOutputTaskId(filePath: string): string | null {
|
|
const prefix = `${getTaskOutputDir()}/`
|
|
const suffix = '.output'
|
|
if (filePath.startsWith(prefix) && filePath.endsWith(suffix)) {
|
|
const taskId = filePath.slice(prefix.length, -suffix.length)
|
|
// Validate it looks like a task ID (alphanumeric, reasonable length)
|
|
if (
|
|
taskId.length > 0 &&
|
|
taskId.length <= 20 &&
|
|
/^[a-zA-Z0-9_-]+$/.test(taskId)
|
|
) {
|
|
return taskId
|
|
}
|
|
}
|
|
return null
|
|
}
|
|
|
|
export function renderToolUseMessage(
|
|
{ file_path, offset, limit, pages }: Partial<Input>,
|
|
{ verbose }: { verbose: boolean },
|
|
): React.ReactNode {
|
|
if (!file_path) {
|
|
return null
|
|
}
|
|
|
|
// For agent output files, return empty string so no parentheses are shown
|
|
// The task ID is displayed separately by AssistantToolUseMessage
|
|
if (getAgentOutputTaskId(file_path)) {
|
|
return ''
|
|
}
|
|
|
|
const displayPath = verbose ? file_path : getDisplayPath(file_path)
|
|
if (pages) {
|
|
return (
|
|
<>
|
|
<FilePathLink filePath={file_path}>{displayPath}</FilePathLink>
|
|
{` · pages ${pages}`}
|
|
</>
|
|
)
|
|
}
|
|
if (verbose && (offset || limit)) {
|
|
const startLine = offset ?? 1
|
|
const lineRange = limit
|
|
? `lines ${startLine}-${startLine + limit - 1}`
|
|
: `from line ${startLine}`
|
|
return (
|
|
<>
|
|
<FilePathLink filePath={file_path}>{displayPath}</FilePathLink>
|
|
{` · ${lineRange}`}
|
|
</>
|
|
)
|
|
}
|
|
return <FilePathLink filePath={file_path}>{displayPath}</FilePathLink>
|
|
}
|
|
|
|
export function renderToolUseTag({
|
|
file_path,
|
|
}: Partial<Input>): React.ReactNode {
|
|
const agentTaskId = file_path ? getAgentOutputTaskId(file_path) : null
|
|
|
|
// Show agent task ID for Read tool when reading agent output
|
|
if (!agentTaskId) {
|
|
return null
|
|
}
|
|
return <Text dimColor> {agentTaskId}</Text>
|
|
}
|
|
|
|
export function renderToolResultMessage(output: Output): React.ReactNode {
|
|
// TODO: Render recursively
|
|
switch (output.type) {
|
|
case 'image': {
|
|
const { originalSize } = output.file
|
|
const formattedSize = formatFileSize(originalSize)
|
|
|
|
return (
|
|
<MessageResponse height={1}>
|
|
<Text>Read image ({formattedSize})</Text>
|
|
</MessageResponse>
|
|
)
|
|
}
|
|
case 'notebook': {
|
|
const { cells } = output.file
|
|
if (!cells || cells.length < 1) {
|
|
return <Text color="error">No cells found in notebook</Text>
|
|
}
|
|
return (
|
|
<MessageResponse height={1}>
|
|
<Text>
|
|
Read <Text bold>{cells.length}</Text> cells
|
|
</Text>
|
|
</MessageResponse>
|
|
)
|
|
}
|
|
case 'pdf': {
|
|
const { originalSize } = output.file
|
|
const formattedSize = formatFileSize(originalSize)
|
|
|
|
return (
|
|
<MessageResponse height={1}>
|
|
<Text>Read PDF ({formattedSize})</Text>
|
|
</MessageResponse>
|
|
)
|
|
}
|
|
case 'parts': {
|
|
return (
|
|
<MessageResponse height={1}>
|
|
<Text>
|
|
Read <Text bold>{output.file.count}</Text>{' '}
|
|
{output.file.count === 1 ? 'page' : 'pages'} (
|
|
{formatFileSize(output.file.originalSize)})
|
|
</Text>
|
|
</MessageResponse>
|
|
)
|
|
}
|
|
case 'text': {
|
|
const { numLines } = output.file
|
|
|
|
return (
|
|
<MessageResponse height={1}>
|
|
<Text>
|
|
Read <Text bold>{numLines}</Text>{' '}
|
|
{numLines === 1 ? 'line' : 'lines'}
|
|
</Text>
|
|
</MessageResponse>
|
|
)
|
|
}
|
|
case 'file_unchanged': {
|
|
return (
|
|
<MessageResponse height={1}>
|
|
<Text dimColor>Unchanged since last read</Text>
|
|
</MessageResponse>
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
export function renderToolUseErrorMessage(
|
|
result: ToolResultBlockParam['content'],
|
|
{ verbose }: { verbose: boolean },
|
|
): React.ReactNode {
|
|
if (!verbose && typeof result === 'string') {
|
|
// FileReadTool throws from call() so errors lack <tool_use_error> wrapping —
|
|
// check the raw string directly for the cwd note marker.
|
|
if (result.includes(FILE_NOT_FOUND_CWD_NOTE)) {
|
|
return (
|
|
<MessageResponse>
|
|
<Text color="error">File not found</Text>
|
|
</MessageResponse>
|
|
)
|
|
}
|
|
if (extractTag(result, 'tool_use_error')) {
|
|
return (
|
|
<MessageResponse>
|
|
<Text color="error">Error reading file</Text>
|
|
</MessageResponse>
|
|
)
|
|
}
|
|
}
|
|
return <FallbackToolUseErrorMessage result={result} verbose={verbose} />
|
|
}
|
|
|
|
export function userFacingName(input: Partial<Input> | undefined): string {
|
|
if (input?.file_path?.startsWith(getPlansDirectory())) {
|
|
return 'Reading Plan'
|
|
}
|
|
if (input?.file_path && getAgentOutputTaskId(input.file_path)) {
|
|
return 'Read agent output'
|
|
}
|
|
return 'Read'
|
|
}
|
|
|
|
export function getToolUseSummary(
|
|
input: Partial<Input> | undefined,
|
|
): string | null {
|
|
if (!input?.file_path) {
|
|
return null
|
|
}
|
|
// For agent output files, just show the task ID
|
|
const agentTaskId = getAgentOutputTaskId(input.file_path)
|
|
if (agentTaskId) {
|
|
return agentTaskId
|
|
}
|
|
return getDisplayPath(input.file_path)
|
|
}
|