- sleep 工具支持 wait_sub_agent_output / wait_sub_agent_ids / wait_runcommand_id 模式 - 多智能体工具移除 ask_sub_agent,新增 stop_sub_agent - 前后端补齐对应 formatter、渲染与工具执行分支 - 修复从多智能体模式切回 /new 后,新对话继承 terminal.multi_agent_mode 导致实际运行在多智能体模式的问题
2072 lines
68 KiB
Vue
2072 lines
68 KiB
Vue
<template>
|
||
<div
|
||
class="collapsible-block tool-block"
|
||
:class="{
|
||
expanded,
|
||
processing: action.tool.status === 'preparing' || action.tool.status === 'running',
|
||
completed: action.tool.status === 'completed'
|
||
}"
|
||
:data-block-id="blockId || collapseKey || action.tool.id || action.id || 'tool'"
|
||
>
|
||
<div class="collapsible-header" @click="$emit('toggle')">
|
||
<div class="arrow"></div>
|
||
<div class="status-icon">
|
||
<span
|
||
class="tool-icon icon icon-md"
|
||
:class="getToolAnimationClass(action.tool)"
|
||
:style="iconStyle(getToolIcon(action.tool))"
|
||
aria-hidden="true"
|
||
></span>
|
||
</div>
|
||
<span class="status-text">{{ getToolStatusText(action.tool) }}</span>
|
||
<span class="tool-desc">{{ getToolDescription(action.tool) }}</span>
|
||
</div>
|
||
<div
|
||
class="collapsible-content"
|
||
:ref="
|
||
(el) =>
|
||
registerCollapseContent &&
|
||
registerCollapseContent(collapseKey || action.tool.id || action.id || 'tool', el)
|
||
"
|
||
>
|
||
<div class="content-inner">
|
||
<div v-html="renderToolResult()"></div>
|
||
</div>
|
||
</div>
|
||
<div
|
||
v-if="action.tool.status === 'preparing' || action.tool.status === 'running'"
|
||
class="progress-indicator"
|
||
></div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
defineOptions({ name: 'ToolAction' });
|
||
|
||
const props = defineProps<{
|
||
action: any;
|
||
expanded: boolean;
|
||
blockId?: string;
|
||
iconStyle: (key: string) => Record<string, string>;
|
||
getToolAnimationClass: (tool: any) => Record<string, unknown>;
|
||
getToolIcon: (tool: any) => string;
|
||
getToolStatusText: (tool: any) => string;
|
||
getToolDescription: (tool: any) => string;
|
||
formatSearchTopic: (filters: Record<string, any>) => string;
|
||
formatSearchTime: (filters: Record<string, any>) => string;
|
||
formatSearchDomains: (filters: Record<string, any>) => string;
|
||
streamingMessage: boolean;
|
||
registerCollapseContent?: (key: string, el: Element | null) => void;
|
||
collapseKey?: string;
|
||
}>();
|
||
|
||
defineEmits<{ (event: 'toggle'): void }>();
|
||
|
||
function escapeHtml(text: string): string {
|
||
const div = document.createElement('div');
|
||
div.textContent = text;
|
||
return div.innerHTML;
|
||
}
|
||
|
||
function formatBytes(bytes: number): string {
|
||
if (bytes === 0) return '0 B';
|
||
const k = 1024;
|
||
const sizes = ['B', 'KB', 'MB', 'GB'];
|
||
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
||
return Math.round((bytes / Math.pow(k, i)) * 100) / 100 + ' ' + sizes[i];
|
||
}
|
||
|
||
function formatDuration(seconds: number): string {
|
||
if (seconds <= 0) return '0 秒';
|
||
if (seconds < 60) return `${seconds} 秒`;
|
||
const minutes = Math.floor(seconds / 60);
|
||
const remainingSeconds = seconds % 60;
|
||
if (minutes < 60) {
|
||
return remainingSeconds > 0 ? `${minutes} 分 ${remainingSeconds} 秒` : `${minutes} 分`;
|
||
}
|
||
const hours = Math.floor(minutes / 60);
|
||
const remainingMinutes = minutes % 60;
|
||
if (remainingMinutes === 0 && remainingSeconds === 0) {
|
||
return `${hours} 小时`;
|
||
}
|
||
return `${hours} 小时 ${remainingMinutes} 分 ${remainingSeconds} 秒`;
|
||
}
|
||
|
||
function formatToolStatusLabel(result: any, successLabel: string, failedLabel = '✗ 失败'): string {
|
||
const state = String(result?.status || props.action?.tool?.status || '').toLowerCase();
|
||
if (state === 'awaiting_user_answer') {
|
||
return '等待回答';
|
||
}
|
||
if (state === 'awaiting_approval' || state === 'pending_approval' || state === 'pending') {
|
||
return '待审批';
|
||
}
|
||
if (state === 'rejected') {
|
||
return '✗ 已拒绝';
|
||
}
|
||
if (state === 'cancelled') {
|
||
return '✗ 已取消';
|
||
}
|
||
return result?.success ? successLabel : failedLabel;
|
||
}
|
||
|
||
function renderToolResult(): string {
|
||
const tool = props.action.tool;
|
||
const result = tool.result;
|
||
const args = tool.arguments || {};
|
||
const name = tool.name;
|
||
|
||
// 网络检索类
|
||
if (name === 'web_search') {
|
||
return renderWebSearch(result, args);
|
||
} else if (name === 'extract_webpage') {
|
||
return renderExtractWebpage(result, args);
|
||
} else if (name === 'save_webpage') {
|
||
return renderSaveWebpage(result, args);
|
||
}
|
||
|
||
// 文件编辑类
|
||
else if (name === 'create_file' || name === 'create_folder') {
|
||
return renderCreateFile(result, args);
|
||
} else if (name === 'write_file') {
|
||
return renderWriteFile(result, args);
|
||
} else if (name === 'edit_file') {
|
||
return renderEditFile(result, args);
|
||
} else if (name === 'delete_file') {
|
||
return renderDeleteFile(result, args);
|
||
} else if (name === 'rename_file') {
|
||
return renderRenameFile(result, args);
|
||
}
|
||
|
||
// 阅读聚焦 / Skills 类
|
||
else if (name === 'read_file' || name === 'read_skill') {
|
||
return renderReadFile(result, args);
|
||
} else if (name === 'create_skill') {
|
||
return renderCreateSkill(result);
|
||
} else if (name === 'vlm_analyze') {
|
||
return renderVlmAnalyze(result, args);
|
||
} else if (name === 'ocr_image') {
|
||
return renderOcrImage(result, args);
|
||
} else if (name === 'view_image') {
|
||
return renderViewImage(result, args);
|
||
}
|
||
|
||
// 终端类
|
||
else if (name === 'terminal_session') {
|
||
return renderTerminalSession(result, args);
|
||
} else if (name === 'terminal_input') {
|
||
return renderTerminalInput(result, args);
|
||
} else if (name === 'terminal_snapshot') {
|
||
return renderTerminalSnapshot(result, args);
|
||
} else if (name === 'sleep') {
|
||
return renderSleep(result, args);
|
||
}
|
||
|
||
// 终端指令类
|
||
else if (name === 'run_command') {
|
||
return renderRunCommand(result, args);
|
||
}
|
||
|
||
// 记忆类
|
||
else if (name === 'update_memory') {
|
||
return renderUpdateMemory(result, args);
|
||
} else if (name === 'conversation_search') {
|
||
return renderConversationSearch(result, args);
|
||
} else if (name === 'conversation_review') {
|
||
return renderConversationReview(result, args);
|
||
}
|
||
|
||
// 用户沟通类
|
||
else if (name === 'ask_user') {
|
||
return renderAskUser(result, args);
|
||
}
|
||
|
||
// 个性化管理类
|
||
else if (name === 'manage_personalization') {
|
||
return renderManagePersonalization(result, args);
|
||
}
|
||
|
||
// 待办事项类
|
||
else if (name === 'todo_create') {
|
||
return renderTodoCreate(result, args);
|
||
} else if (name === 'todo_update_task') {
|
||
return renderTodoUpdate(result, args);
|
||
}
|
||
|
||
// 彩蛋类
|
||
else if (name === 'trigger_easter_egg') {
|
||
return renderEasterEgg(result, args);
|
||
}
|
||
|
||
// 子智能体类
|
||
else if (name === 'create_sub_agent') {
|
||
return renderCreateSubAgent(result, args);
|
||
} else if (name === 'terminate_sub_agent') {
|
||
return renderTerminateSubAgent(result, args);
|
||
} else if (name === 'send_message_to_sub_agent') {
|
||
return renderSendMessageToSubAgent(result, args);
|
||
} else if (name === 'answer_sub_agent_question') {
|
||
return renderAnswerSubAgentQuestion(result, args);
|
||
} else if (name === 'create_custom_agent') {
|
||
return renderCreateCustomAgent(result, args);
|
||
} else if (name === 'list_agents') {
|
||
return renderListAgents(result);
|
||
} else if (name === 'list_active_sub_agents') {
|
||
return renderListActiveSubAgents(result);
|
||
} else if (name === 'get_sub_agent_status') {
|
||
return renderGetSubAgentStatus(result);
|
||
}
|
||
|
||
// 默认不再显示原始 JSON,而是显示参数摘要 + 结果状态
|
||
return renderDefaultResult(result, args, name);
|
||
}
|
||
|
||
function renderDefaultResult(result: any, args: any, name: string): string {
|
||
const status = formatToolStatusLabel(result, '✓ 完成', '✗ 失败');
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>工具:</strong>${escapeHtml(name)}</div>`;
|
||
html += `<div><strong>状态:</strong>${escapeHtml(status)}</div>`;
|
||
|
||
// 只展示重要参数:文件路径、目标 ID、问题等
|
||
const importantKeys = [
|
||
'path',
|
||
'file_path',
|
||
'agent_id',
|
||
'target_agent_id',
|
||
'question',
|
||
'role_id',
|
||
'url'
|
||
];
|
||
importantKeys.forEach((key) => {
|
||
const value = args[key] ?? result?.[key];
|
||
if (value !== undefined && value !== '' && value !== null) {
|
||
const labelMap: Record<string, string> = {
|
||
path: '路径',
|
||
file_path: '路径',
|
||
agent_id: '子智能体 ID',
|
||
target_agent_id: '目标子智能体 ID',
|
||
question: '问题',
|
||
role_id: '角色 ID',
|
||
url: 'URL'
|
||
};
|
||
const displayValue = typeof value === 'string' ? value : JSON.stringify(value);
|
||
const preview = String(displayValue).slice(0, 200);
|
||
const suffix = String(displayValue).length > 200 ? '…' : '';
|
||
html += `<div><strong>${escapeHtml(labelMap[key] || key)}:</strong>${escapeHtml(preview + suffix)}</div>`;
|
||
}
|
||
});
|
||
|
||
if (!result?.success && result?.error) {
|
||
html += `<div><strong>错误:</strong>${escapeHtml(String(result.error))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
// 如果结果里有可读的 message/summary/answer/output/content/data,直接展示
|
||
const readable =
|
||
result?.message ??
|
||
result?.summary ??
|
||
result?.answer ??
|
||
result?.output ??
|
||
result?.content ??
|
||
result?.data ??
|
||
'';
|
||
if (readable && typeof readable === 'string' && readable.trim()) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += `<pre>${escapeHtml(readable.trim())}</pre>`;
|
||
html += '</div>';
|
||
} else if (result?.success) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += '<div class="tool-result-empty">工具执行完成,无额外可展示内容。</div>';
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
// ===== 网络检索类 =====
|
||
function renderWebSearch(result: any, args: any): string {
|
||
const query = result.query || args.query || '';
|
||
const filters = result.filters || {};
|
||
const totalResults = result.total_results || 0;
|
||
const results = result.results || [];
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>搜索内容:</strong>${escapeHtml(query)}</div>`;
|
||
html += `<div><strong>主题:</strong>${escapeHtml(props.formatSearchTopic(filters))}</div>`;
|
||
html += `<div><strong>时间范围:</strong>${escapeHtml(props.formatSearchTime(filters))}</div>`;
|
||
html += `<div><strong>限定网站:</strong>${escapeHtml(props.formatSearchDomains(filters))}</div>`;
|
||
html += `<div><strong>结果数量:</strong>${totalResults}</div>`;
|
||
html += '</div>';
|
||
|
||
if (results.length > 0) {
|
||
html += '<div class="search-result-list">';
|
||
results.forEach((item: any) => {
|
||
html += '<div class="search-result-item">';
|
||
html += `<div class="search-result-title">${escapeHtml(item.title || '无标题')}</div>`;
|
||
html += '<div class="search-result-url">';
|
||
if (item.url) {
|
||
html += `<a href="${escapeHtml(item.url)}" target="_blank">${escapeHtml(item.url)}</a>`;
|
||
} else {
|
||
html += '<span>无可用链接</span>';
|
||
}
|
||
html += '</div></div>';
|
||
});
|
||
html += '</div>';
|
||
} else {
|
||
html += '<div class="tool-result-empty">未返回详细的搜索结果。</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderExtractWebpage(result: any, args: any): string {
|
||
const url = args.url || result.url || '';
|
||
const status = formatToolStatusLabel(result, '✓ 成功');
|
||
const content = result.content || result.text || '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>URL:</strong>${escapeHtml(url)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += '</div>';
|
||
|
||
if (content) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += `<pre>${escapeHtml(content)}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderSaveWebpage(result: any, args: any): string {
|
||
const url = args.url || result.url || '';
|
||
const path = result.path || args.save_path || '';
|
||
const status = formatToolStatusLabel(result, '✓ 已保存');
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>URL:</strong>${escapeHtml(url)}</div>`;
|
||
html += `<div><strong>保存路径:</strong>${escapeHtml(path)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
// ===== 文件编辑类 =====
|
||
function renderCreateFile(result: any, args: any): string {
|
||
const path = args.path || result.path || '';
|
||
const status = formatToolStatusLabel(result, '✓ 已创建');
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>路径:</strong>${escapeHtml(path)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderWriteFile(result: any, args: any): string {
|
||
const path = args.file_path || args.path || result.path || '';
|
||
const status = formatToolStatusLabel(result, '✓ 已写入');
|
||
const appendFlag = typeof args.append === 'boolean' ? args.append : null;
|
||
const modeRaw = String(result.mode || '').toLowerCase();
|
||
const writeMode =
|
||
appendFlag === true || modeRaw === 'a'
|
||
? '追加'
|
||
: appendFlag === false || modeRaw === 'w'
|
||
? '覆盖'
|
||
: '无';
|
||
const content =
|
||
appendFlag === true || modeRaw === 'a'
|
||
? args.content || ''
|
||
: (result.new_file ?? args.content ?? '');
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>路径:</strong>${escapeHtml(path)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += `<div><strong>模式:</strong>${writeMode}</div>`;
|
||
if (!result.success && result.error) {
|
||
html += `<div><strong>错误:</strong>${escapeHtml(String(result.error))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
// 显示写入的内容
|
||
if (result.success && content) {
|
||
html += '<div class="tool-result-diff scrollable">';
|
||
const lines = content.split('\n');
|
||
lines.forEach((line: string, idx: number) => {
|
||
html += `<div class="diff-line diff-add"><span class="diff-line-number">${idx + 1}</span><span class="diff-marker">+</span><span class="diff-content">${escapeHtml(line)}</span></div>`;
|
||
});
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderEditFile(result: any, args: any): string {
|
||
const path = args.file_path || args.path || result.path || '';
|
||
const status = formatToolStatusLabel(result, '✓ 已编辑');
|
||
const foundCount =
|
||
typeof result.found_matches === 'number'
|
||
? result.found_matches
|
||
: typeof result.replacements === 'number'
|
||
? result.replacements
|
||
: null;
|
||
const replacedCount = typeof result.replacements === 'number' ? result.replacements : null;
|
||
|
||
const details = Array.isArray(result.details)
|
||
? result.details.filter((d: any) => d && d.status === 'success')
|
||
: [];
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>路径:</strong>${escapeHtml(path)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += `<div><strong>替换组数:</strong>${(result.replacement_groups ?? details.length) || '无'}</div>`;
|
||
html += `<div><strong>找到:</strong>${foundCount ?? '无'}处</div>`;
|
||
html += `<div><strong>替换:</strong>${replacedCount ?? '无'}处</div>`;
|
||
if (!result.success && result.error) {
|
||
html += `<div><strong>错误:</strong>${escapeHtml(String(result.error))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
if (!result.success) {
|
||
return html;
|
||
}
|
||
|
||
if (details.length > 0) {
|
||
html += '<div class="tool-result-diff scrollable">';
|
||
const renderDiffLine = (
|
||
lineNo: number | null,
|
||
marker: string,
|
||
text: string,
|
||
className = ''
|
||
) => {
|
||
const lineNoText =
|
||
typeof lineNo === 'number' && Number.isFinite(lineNo) ? String(lineNo) : '';
|
||
html += `<div class="diff-line${className ? ` ${className}` : ''}"><span class="diff-line-number">${escapeHtml(lineNoText)}</span><span class="diff-marker">${escapeHtml(marker)}</span><span class="diff-content">${escapeHtml(text)}</span></div>`;
|
||
};
|
||
const hunks: any[] = [];
|
||
details.forEach((detail: any) => {
|
||
const oldText = detail.old_string || '';
|
||
const newText = detail.new_string || '';
|
||
const contexts = Array.isArray(detail.contexts) ? detail.contexts : [];
|
||
const buildPairRows = (context?: any) => {
|
||
const rows: any[] = [];
|
||
const startLineCandidate = Number(context?.old_start_line ?? detail.matched_lines?.[0]);
|
||
const startLine = Number.isFinite(startLineCandidate) ? startLineCandidate : null;
|
||
if (oldText) {
|
||
const oldLines = oldText.split('\n');
|
||
oldLines.forEach((line: string, lineIdx: number) => {
|
||
rows.push({
|
||
lineNo: startLine === null ? null : startLine + lineIdx,
|
||
marker: '-',
|
||
text: line,
|
||
className: 'diff-remove'
|
||
});
|
||
});
|
||
}
|
||
|
||
if (newText) {
|
||
const newLines = newText.split('\n');
|
||
newLines.forEach((line: string, lineIdx: number) => {
|
||
rows.push({
|
||
lineNo: startLine === null ? null : startLine + lineIdx,
|
||
marker: '+',
|
||
text: line,
|
||
className: 'diff-add'
|
||
});
|
||
});
|
||
}
|
||
return rows;
|
||
};
|
||
|
||
if (contexts.length > 0) {
|
||
contexts.forEach((context: any) => {
|
||
const rows: any[] = [];
|
||
const rawBeforeLines = Array.isArray(context.before_lines) ? context.before_lines : [];
|
||
const rawAfterLines = Array.isArray(context.after_lines) ? context.after_lines : [];
|
||
const beforeLines =
|
||
rawBeforeLines.length >= 2 &&
|
||
rawBeforeLines.every((item: any) => String(item?.text ?? '') === '')
|
||
? []
|
||
: rawBeforeLines.length >= 2 && String(rawBeforeLines[0]?.text ?? '') === ''
|
||
? rawBeforeLines.slice(1)
|
||
: rawBeforeLines;
|
||
const afterLines =
|
||
rawAfterLines.length >= 2 &&
|
||
rawAfterLines.every((item: any) => String(item?.text ?? '') === '')
|
||
? []
|
||
: rawAfterLines.length >= 2 &&
|
||
String(rawAfterLines[rawAfterLines.length - 1]?.text ?? '') === ''
|
||
? rawAfterLines.slice(0, -1)
|
||
: rawAfterLines;
|
||
|
||
const contextOldStartLine = Number(context?.old_start_line ?? detail.matched_lines?.[0]);
|
||
const contextOldEndLine = Number(context?.old_end_line ?? contextOldStartLine);
|
||
const oldLineCount =
|
||
Number.isFinite(contextOldStartLine) && Number.isFinite(contextOldEndLine)
|
||
? Math.max(1, contextOldEndLine - contextOldStartLine + 1)
|
||
: Math.max(1, oldText ? oldText.split('\n').length : 1);
|
||
const newLineCount = newText === '' ? 0 : newText.split('\n').length;
|
||
const afterContextOffset = newLineCount - oldLineCount;
|
||
|
||
beforeLines.forEach((item: any) => {
|
||
rows.push({
|
||
lineNo: Number(item.line),
|
||
marker: ' ',
|
||
text: String(item.text ?? ''),
|
||
className: ''
|
||
});
|
||
});
|
||
rows.push(...buildPairRows(context));
|
||
afterLines.forEach((item: any) => {
|
||
const rawLineNo = Number(item.line);
|
||
const lineNo = Number.isFinite(rawLineNo) ? rawLineNo + afterContextOffset : rawLineNo;
|
||
rows.push({ lineNo, marker: ' ', text: String(item.text ?? ''), className: '' });
|
||
});
|
||
const numberedRows = rows.filter(
|
||
(row) => typeof row.lineNo === 'number' && Number.isFinite(row.lineNo)
|
||
);
|
||
hunks.push({
|
||
rows,
|
||
minLine: numberedRows.length
|
||
? Math.min(...numberedRows.map((row) => row.lineNo))
|
||
: null,
|
||
maxLine: numberedRows.length ? Math.max(...numberedRows.map((row) => row.lineNo)) : null
|
||
});
|
||
});
|
||
} else {
|
||
const rows = buildPairRows();
|
||
const numberedRows = rows.filter(
|
||
(row) => typeof row.lineNo === 'number' && Number.isFinite(row.lineNo)
|
||
);
|
||
hunks.push({
|
||
rows,
|
||
minLine: numberedRows.length ? Math.min(...numberedRows.map((row) => row.lineNo)) : null,
|
||
maxLine: numberedRows.length ? Math.max(...numberedRows.map((row) => row.lineNo)) : null
|
||
});
|
||
}
|
||
});
|
||
const sortedHunks = hunks.sort(
|
||
(a, b) => (a.minLine ?? Number.MAX_SAFE_INTEGER) - (b.minLine ?? Number.MAX_SAFE_INTEGER)
|
||
);
|
||
const mergedHunks: any[] = [];
|
||
sortedHunks.forEach((hunk) => {
|
||
const last = mergedHunks[mergedHunks.length - 1];
|
||
if (
|
||
last &&
|
||
hunk.minLine !== null &&
|
||
last.maxLine !== null &&
|
||
hunk.minLine <= last.maxLine + 1
|
||
) {
|
||
last.rows.push(...hunk.rows);
|
||
last.maxLine = Math.max(last.maxLine, hunk.maxLine ?? last.maxLine);
|
||
} else {
|
||
mergedHunks.push({ ...hunk, rows: [...hunk.rows] });
|
||
}
|
||
});
|
||
const markerOrder: Record<string, number> = { ' ': 0, '-': 1, '+': 2 };
|
||
mergedHunks.forEach((hunk, hunkIdx) => {
|
||
if (hunkIdx > 0) renderDiffLine(null, ' ', '⋮', 'diff-separator');
|
||
const seenContextLines = new Set<number>();
|
||
hunk.rows
|
||
.filter((row: any) => {
|
||
if (row.marker !== ' ' || typeof row.lineNo !== 'number') return true;
|
||
if (seenContextLines.has(row.lineNo)) return false;
|
||
seenContextLines.add(row.lineNo);
|
||
return true;
|
||
})
|
||
.sort((a: any, b: any) => {
|
||
const lineDelta =
|
||
(a.lineNo ?? Number.MAX_SAFE_INTEGER) - (b.lineNo ?? Number.MAX_SAFE_INTEGER);
|
||
return lineDelta || (markerOrder[a.marker] ?? 9) - (markerOrder[b.marker] ?? 9);
|
||
})
|
||
.forEach((row: any) => renderDiffLine(row.lineNo, row.marker, row.text, row.className));
|
||
});
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderDeleteFile(result: any, args: any): string {
|
||
const path = args.path || result.path || '';
|
||
const status = formatToolStatusLabel(result, '✓ 已删除');
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>路径:</strong>${escapeHtml(path)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderRenameFile(result: any, args: any): string {
|
||
const oldPath = args.old_path || args.source || result.old_path || '';
|
||
const newPath = args.new_path || args.destination || result.new_path || '';
|
||
const status = formatToolStatusLabel(result, '✓ 已重命名');
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>路径:</strong>${escapeHtml(oldPath)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += `<div><strong>重命名:</strong>${escapeHtml(oldPath)} → ${escapeHtml(newPath)}</div>`;
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
// ===== 阅读聚焦类 =====
|
||
function renderReadFile(result: any, args: any): string {
|
||
const path = args.path || result.path || '';
|
||
const status = formatToolStatusLabel(result, '✓ 成功');
|
||
const size = result.size || result.file_size || 0;
|
||
const readType = result.type || 'read';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>路径:</strong>${escapeHtml(path)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
if (size > 0) {
|
||
html += `<div><strong>大小:</strong>${formatBytes(size)}</div>`;
|
||
}
|
||
if (readType !== 'read') {
|
||
html += `<div><strong>模式:</strong>${escapeHtml(readType)}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
// 处理普通读取模式
|
||
if (readType === 'read') {
|
||
const content = result.content || result.text || '';
|
||
if (content) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += `<pre>${escapeHtml(content)}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
}
|
||
// 处理搜索模式
|
||
else if (readType === 'search') {
|
||
const matches = result.matches || [];
|
||
const query = result.query || args.query || '';
|
||
|
||
if (query) {
|
||
html += '<div class="tool-result-meta">';
|
||
html += `<div><strong>搜索关键词:</strong>${escapeHtml(query)}</div>`;
|
||
html += `<div><strong>匹配数量:</strong>${matches.length}</div>`;
|
||
html += '</div>';
|
||
}
|
||
|
||
if (matches.length > 0) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
matches.forEach((match: any, idx: number) => {
|
||
if (idx > 0) html += '<div class="search-match-separator">⋯</div>';
|
||
html += '<div class="search-match-item">';
|
||
const lineLabel =
|
||
match.line_start === match.line_end
|
||
? `${match.line_start}`
|
||
: `${match.line_start}-${match.line_end}`;
|
||
html += `<div class="search-match-line">行 ${lineLabel}</div>`;
|
||
html += `<pre>${escapeHtml(match.snippet || match.content || '')}</pre>`;
|
||
html += '</div>';
|
||
});
|
||
html += '</div>';
|
||
} else {
|
||
html += '<div class="tool-result-empty">未找到匹配内容</div>';
|
||
}
|
||
}
|
||
// 处理提取模式
|
||
else if (readType === 'extract') {
|
||
const segments = result.segments || [];
|
||
|
||
if (segments.length > 0) {
|
||
html += '<div class="tool-result-meta">';
|
||
html += `<div><strong>提取片段数:</strong>${segments.length}</div>`;
|
||
html += '</div>';
|
||
|
||
html += '<div class="tool-result-content scrollable">';
|
||
segments.forEach((segment: any, idx: number) => {
|
||
if (idx > 0) html += '<div class="segment-separator">⋯</div>';
|
||
html += '<div class="segment-item">';
|
||
const startLine = segment.start_line || segment.line_start || '?';
|
||
const endLine = segment.end_line || segment.line_end || '?';
|
||
html += `<div class="segment-range">行 ${startLine}-${endLine}</div>`;
|
||
html += `<pre>${escapeHtml(segment.content || segment.text || '')}</pre>`;
|
||
html += '</div>';
|
||
});
|
||
html += '</div>';
|
||
} else {
|
||
html += '<div class="tool-result-empty">未提取到内容</div>';
|
||
}
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderVlmAnalyze(result: any, args: any): string {
|
||
const path = args.image_path || args.path || result.path || '';
|
||
const status = formatToolStatusLabel(result, '✓ 成功');
|
||
const analysis = result.analysis || result.result || '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>路径:</strong>${escapeHtml(path)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += '</div>';
|
||
|
||
if (analysis) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += '<div class="content-label">分析结果:</div>';
|
||
html += `<pre>${escapeHtml(analysis)}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderOcrImage(result: any, args: any): string {
|
||
const path = args.image_path || args.path || result.path || '';
|
||
const status = formatToolStatusLabel(result, '✓ 成功');
|
||
const size = result.size || result.file_size || 0;
|
||
const text = result.text || result.ocr_text || '';
|
||
const imageUrl = result.image_url || result.url || '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>路径:</strong>${escapeHtml(path)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
if (size > 0) {
|
||
html += `<div><strong>大小:</strong>${formatBytes(size)}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
if (imageUrl) {
|
||
html += `<div class="tool-result-image"><img src="${escapeHtml(imageUrl)}" alt="OCR图片" style="max-width: 100%; height: auto;" /></div>`;
|
||
}
|
||
|
||
if (text) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += '<div class="content-label">识别文本:</div>';
|
||
html += `<pre>${escapeHtml(text)}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderViewImage(result: any, args: any): string {
|
||
const path = args.image_path || args.path || result.path || '';
|
||
const status = formatToolStatusLabel(result, '✓ 成功');
|
||
const size = result.size || result.file_size || 0;
|
||
const imageUrl = result.image_url || result.url || '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>路径:</strong>${escapeHtml(path)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
if (size > 0) {
|
||
html += `<div><strong>大小:</strong>${formatBytes(size)}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
if (imageUrl) {
|
||
html += `<div class="tool-result-image"><img src="${escapeHtml(imageUrl)}" alt="查看图片" style="max-width: 100%; height: auto;" /></div>`;
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
// ===== 终端类 =====
|
||
function renderTerminalSession(result: any, args: any): string {
|
||
const operation = args.operation || args.action || 'start';
|
||
const sessionName = args.session_name || args.name || result.session_name || '';
|
||
const status = formatToolStatusLabel(result, '✓ 成功');
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>操作:</strong>${escapeHtml(operation)}</div>`;
|
||
html += `<div><strong>终端名:</strong>${escapeHtml(sessionName)}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderTerminalInput(result: any, args: any): string {
|
||
const command = args.command || args.input || '';
|
||
const outputWait = args.output_wait || 30;
|
||
const output = result.output || result.result || '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>指令:</strong>${escapeHtml(command)}</div>`;
|
||
html += `<div><strong>等待时间:</strong>${outputWait}秒</div>`;
|
||
html += '</div>';
|
||
|
||
if (output) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += '<div class="content-label">输出:</div>';
|
||
html += `<pre>${escapeHtml(output)}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderTerminalSnapshot(result: any, args: any): string {
|
||
const sessionName = args.session_name || args.name || result.session_name || '';
|
||
const status = formatToolStatusLabel(result, '✓ 成功');
|
||
const startLine = args.start_line || 0;
|
||
const endLine = args.end_line || 0;
|
||
const content = result.content || result.output || '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += `<div><strong>终端名:</strong>${escapeHtml(sessionName)}</div>`;
|
||
if (startLine || endLine) {
|
||
html += `<div><strong>行范围:</strong>${startLine} - ${endLine}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
if (content) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += '<div class="content-label">获取的内容:</div>';
|
||
html += `<pre>${escapeHtml(content)}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderSleep(result: any, args: any): string {
|
||
const status = formatToolStatusLabel(result, '✓ 完成');
|
||
const mode = result?.mode || 'seconds';
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += `<div><strong>模式:</strong>${escapeHtml(mode)}</div>`;
|
||
|
||
if (mode === 'seconds' || mode === '' || mode === null) {
|
||
const seconds = args.seconds || args.duration || 0;
|
||
html += `<div><strong>等待时间:</strong>${seconds}秒</div>`;
|
||
if (args.reason) {
|
||
html += `<div><strong>原因:</strong>${escapeHtml(String(args.reason))}</div>`;
|
||
}
|
||
} else if (mode === 'wait_sub_agent_output') {
|
||
const agentId = result?.agent_id ?? args?.wait_sub_agent_output_ids ?? '';
|
||
if (agentId !== '') {
|
||
html += `<div><strong>等待子智能体:</strong>#${escapeHtml(String(agentId))}</div>`;
|
||
}
|
||
} else if (mode === 'wait_sub_agent_ids') {
|
||
const agentIds = Array.isArray(result?.agent_ids) ? result.agent_ids : [];
|
||
if (agentIds.length > 0) {
|
||
html += `<div><strong>等待子智能体:</strong>${agentIds.map(String).join(', ')}</div>`;
|
||
}
|
||
const taskIds = Array.isArray(result?.waited_task_ids) ? result.waited_task_ids : [];
|
||
if (taskIds.length > 0) {
|
||
html += `<div><strong>任务 ID:</strong>${taskIds.map(String).join(', ')}</div>`;
|
||
}
|
||
} else if (mode === 'wait_runcommand_id') {
|
||
const commandId = result?.command_id ?? args?.wait_runcommand_id ?? '';
|
||
if (commandId !== '') {
|
||
html += `<div><strong>后台命令 ID:</strong>${escapeHtml(String(commandId))}</div>`;
|
||
}
|
||
}
|
||
|
||
if (!result?.success && result?.error) {
|
||
html += `<div><strong>错误:</strong>${escapeHtml(String(result.error))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
// content
|
||
if (mode === 'seconds' || mode === '' || mode === null) {
|
||
const message = result?.message || '';
|
||
if (message) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += `<div class="content-label">结果:</div>`;
|
||
html += `<pre>${escapeHtml(String(message))}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
} else if (mode === 'wait_sub_agent_output') {
|
||
const message = result?.message || '';
|
||
if (message) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += '<div class="content-label">子智能体输出:</div>';
|
||
html += `<pre>${escapeHtml(String(message))}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
} else if (mode === 'wait_sub_agent_ids') {
|
||
const results = Array.isArray(result?.results) ? result.results : [];
|
||
if (results.length > 0) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += `<div class="content-label">已等待 ${results.length} 个子智能体:</div>`;
|
||
results.forEach((item: any) => {
|
||
if (!item || typeof item !== 'object') return;
|
||
const agentId = item.agent_id ?? '?';
|
||
const taskId = item.task_id ?? '?';
|
||
const itemStatus = item.status ?? 'unknown';
|
||
const success = item.success === true;
|
||
html += '<div class="sub-agent-result-item">';
|
||
html += `<div><strong>子智能体 #${escapeHtml(String(agentId))}</strong>(任务 ${escapeHtml(String(taskId))})· ${escapeHtml(String(itemStatus))} · ${success ? '✓ 成功' : '✗ 失败'}</div>`;
|
||
const itemMessage = item.message || item.error || '';
|
||
if (itemMessage) {
|
||
const runtime = item.runtime_seconds ?? item.elapsed_seconds ?? null;
|
||
const runtimeNote = runtime !== null ? `运行 ${Math.round(Number(runtime))} 秒` : '';
|
||
const stats = item.stats;
|
||
if (runtimeNote || stats) {
|
||
html += '<div class="sub-agent-meta">';
|
||
if (runtimeNote) {
|
||
html += `<span>${escapeHtml(runtimeNote)}</span>`;
|
||
}
|
||
if (stats && typeof stats === 'object') {
|
||
const statParts = [];
|
||
if (stats.api_calls != null) statParts.push(`调用 ${stats.api_calls} 次`);
|
||
if (stats.files_read != null) statParts.push(`阅读 ${stats.files_read} 次`);
|
||
if (stats.edit_files != null) statParts.push(`编辑 ${stats.edit_files} 次`);
|
||
if (stats.searches != null) statParts.push(`搜索 ${stats.searches} 次`);
|
||
if (stats.web_pages != null) statParts.push(`网页 ${stats.web_pages} 个`);
|
||
if (stats.commands != null) statParts.push(`命令 ${stats.commands} 个`);
|
||
if (statParts.length > 0) {
|
||
html += `<span>${escapeHtml(statParts.join(' | '))}</span>`;
|
||
}
|
||
}
|
||
html += '</div>';
|
||
}
|
||
html += `<pre>${escapeHtml(String(itemMessage))}</pre>`;
|
||
}
|
||
html += '</div>';
|
||
});
|
||
html += '</div>';
|
||
}
|
||
} else if (mode === 'wait_runcommand_id') {
|
||
const nested = result?.result;
|
||
if (nested && typeof nested === 'object') {
|
||
const output = nested.output || nested.stdout || '';
|
||
const exitCode = nested.exit_code !== undefined ? nested.exit_code : nested.returncode;
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += '<div class="content-label">后台命令输出:</div>';
|
||
if (exitCode !== undefined) {
|
||
html += `<div><strong>退出码:</strong>${escapeHtml(String(exitCode))}</div>`;
|
||
}
|
||
if (output) {
|
||
html += `<pre>${escapeHtml(String(output))}</pre>`;
|
||
} else {
|
||
html += '<div class="tool-result-empty">[无输出]</div>';
|
||
}
|
||
html += '</div>';
|
||
}
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
// ===== 终端指令类 =====
|
||
function renderRunCommand(result: any, args: any): string {
|
||
const command = args.command || '';
|
||
const timeout = args.timeout || 30;
|
||
const output = result.output || result.stdout || '';
|
||
const exitCode = result.exit_code !== undefined ? result.exit_code : result.returncode;
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>指令:</strong>${escapeHtml(command)}</div>`;
|
||
html += `<div><strong>超时时间:</strong>${timeout}秒</div>`;
|
||
if (exitCode !== undefined) {
|
||
html += `<div><strong>退出码:</strong>${exitCode}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
if (output) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += '<div class="content-label">输出:</div>';
|
||
html += `<pre>${escapeHtml(output)}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
// ===== 记忆类 =====
|
||
function renderUpdateMemory(result: any, args: any): string {
|
||
const operations = args.operations || [];
|
||
const added = operations.filter((op: any) => op.action === 'add' || op.action === 'create');
|
||
const updated = operations.filter((op: any) => op.action === 'update' || op.action === 'modify');
|
||
const deleted = operations.filter((op: any) => op.action === 'delete' || op.action === 'remove');
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>操作:</strong>添加 ${added.length} 条 | 更新 ${updated.length} 条 | 删除 ${deleted.length} 条</div>`;
|
||
html += '</div>';
|
||
|
||
html += '<div class="tool-result-content scrollable">';
|
||
|
||
if (added.length > 0) {
|
||
html += '<div class="memory-section">';
|
||
added.forEach((op: any) => {
|
||
html += `<div class="memory-item memory-add">+ ${escapeHtml(op.content || op.text || '')}</div>`;
|
||
});
|
||
html += '</div>';
|
||
}
|
||
|
||
if (updated.length > 0) {
|
||
html += '<div class="memory-section">';
|
||
updated.forEach((op: any) => {
|
||
html += `<div class="memory-item memory-update">✏️ ${escapeHtml(op.content || op.text || '')}</div>`;
|
||
});
|
||
html += '</div>';
|
||
}
|
||
|
||
if (deleted.length > 0) {
|
||
html += '<div class="memory-section">';
|
||
deleted.forEach((op: any) => {
|
||
html += `<div class="memory-item memory-delete">- ${escapeHtml(op.content || op.text || '')}</div>`;
|
||
});
|
||
html += '</div>';
|
||
}
|
||
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderConversationSearch(result: any, args: any): string {
|
||
const results = Array.isArray(result?.results) ? result.results : [];
|
||
const keywords = Array.isArray(result?.keywords)
|
||
? result.keywords
|
||
: Array.isArray(args?.keywords)
|
||
? args.keywords
|
||
: [];
|
||
const keywordText = keywords.length
|
||
? keywords.join(' / ')
|
||
: result?.query || args?.query || '(未指定)';
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>关键词:</strong>${escapeHtml(keywordText)}</div>`;
|
||
html += `<div><strong>日期范围:</strong>${escapeHtml(result?.start_date || args?.start_date || '不限')} ~ ${escapeHtml(result?.end_date || args?.end_date || '不限')}</div>`;
|
||
html += '<div><strong>范围:</strong>当前工作区历史对话(已排除当前对话)</div>';
|
||
html += `<div><strong>结果数量:</strong>${results.length}</div>`;
|
||
html += '</div>';
|
||
if (!results.length) {
|
||
html += '<div class="tool-result-empty">未找到匹配对话。</div>';
|
||
return html;
|
||
}
|
||
html += '<div class="search-result-list">';
|
||
results.forEach((item: any) => {
|
||
html += '<div class="search-result-item">';
|
||
html += `<div class="search-result-title">${escapeHtml(item.title || '未命名对话')}</div>`;
|
||
html += `<div><strong>ID:</strong>${escapeHtml(item.id || '')}</div>`;
|
||
html += `<div><strong>规模:</strong>${escapeHtml(String(item.total_messages || 0))} 条消息,${escapeHtml(String(item.total_tools || 0))} 个工具</div>`;
|
||
if (item.first_user_message) {
|
||
html += `<div><strong>首条用户消息:</strong>${escapeHtml(item.first_user_message)}</div>`;
|
||
}
|
||
if (item.updated_at) {
|
||
html += `<div><strong>更新时间:</strong>${escapeHtml(item.updated_at)}</div>`;
|
||
}
|
||
html += '</div>';
|
||
});
|
||
html += '</div>';
|
||
return html;
|
||
}
|
||
|
||
function renderConversationReview(result: any, args: any): string {
|
||
const status = formatToolStatusLabel(result, result?.mode === 'read' ? '✓ 已返回' : '✓ 已生成');
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>对话 ID:</strong>${escapeHtml(result?.conversation_id || args?.conversation_id || '')}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += `<div><strong>模式:</strong>${escapeHtml(result?.mode || args?.mode || '')}</div>`;
|
||
if (result?.title) {
|
||
html += `<div><strong>标题:</strong>${escapeHtml(result.title)}</div>`;
|
||
}
|
||
if (result?.path) {
|
||
html += `<div><strong>回顾文件:</strong>${escapeHtml(result.path)}</div>`;
|
||
}
|
||
if (result?.char_count !== undefined) {
|
||
html += `<div><strong>字符数:</strong>${escapeHtml(String(result.char_count))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
if (!result?.success && result?.error) {
|
||
html += `<div class="tool-result-error">${escapeHtml(result.error)}</div>`;
|
||
}
|
||
if (result?.too_long && result?.path) {
|
||
html += '<div class="tool-result-warning">内容太长,已保存到文件,请分段或查找阅读。</div>';
|
||
}
|
||
if (result?.content) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += '<div class="content-label">回顾内容:</div>';
|
||
html += `<pre>${escapeHtml(result.content)}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
return html;
|
||
}
|
||
|
||
function renderCreateSkill(result: any): string {
|
||
const status = formatToolStatusLabel(result, '✓ 已归档');
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
if (result?.skill_name) {
|
||
html += `<div><strong>Skill:</strong>${escapeHtml(result.skill_name)}</div>`;
|
||
}
|
||
html += '</div>';
|
||
if (!result?.success && result?.error) {
|
||
html += `<div class="tool-result-error">${escapeHtml(result.error)}</div>`;
|
||
}
|
||
if (result?.sync_warning) {
|
||
html += `<div class="tool-result-warning">${escapeHtml(result.sync_warning)}</div>`;
|
||
}
|
||
return html;
|
||
}
|
||
|
||
function formatPersonalizationFieldLabel(field: string): string {
|
||
const labelMap: Record<string, string> = {
|
||
enabled: '个性化功能',
|
||
self_identify: 'AI 自称',
|
||
user_name: '用户称呼',
|
||
profession: '用户职业',
|
||
tone: '交流语气',
|
||
considerations: '注意事项',
|
||
theme: '主题配色',
|
||
communication_style: '交流风格',
|
||
conversation_continuity: '对话连续性'
|
||
};
|
||
return labelMap[field] || field;
|
||
}
|
||
|
||
function formatPersonalizationFieldValue(field: string, value: any): string {
|
||
if (value === null || value === undefined || value === '') {
|
||
return '未设置';
|
||
}
|
||
|
||
if (field === 'enabled') {
|
||
return value ? '开启' : '关闭';
|
||
}
|
||
if (field === 'theme') {
|
||
const themeMap: Record<string, string> = {
|
||
classic: 'classic(经典)',
|
||
light: 'light(明亮)',
|
||
dark: 'dark(暗黑)'
|
||
};
|
||
return themeMap[String(value)] || String(value);
|
||
}
|
||
if (field === 'communication_style') {
|
||
const styleMap: Record<string, string> = {
|
||
default: 'default(标准 AI 风格)',
|
||
human_like: 'human_like(拟人聊天风格)',
|
||
auto: 'auto(自动)'
|
||
};
|
||
return styleMap[String(value)] || String(value);
|
||
}
|
||
if (field === 'conversation_continuity') {
|
||
const independenceMap: Record<string, string> = {
|
||
low: 'low(低)',
|
||
medium: 'medium(中)',
|
||
high: 'high(高)'
|
||
};
|
||
return independenceMap[String(value)] || String(value);
|
||
}
|
||
if (field === 'considerations') {
|
||
if (typeof value !== 'string' || value.trim() === '') {
|
||
return '未设置';
|
||
}
|
||
return value.trim();
|
||
}
|
||
|
||
return String(value);
|
||
}
|
||
|
||
function renderAskUser(result: any, args: any): string {
|
||
const question = args.question || result.question || '';
|
||
const context = args.context || result.context || '';
|
||
const status = formatToolStatusLabel(result, '✓ 已回答');
|
||
const answerText =
|
||
result.status === 'answered' ? String(result.answer_text || result.message || '').trim() : '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${escapeHtml(status)}</div>`;
|
||
if (question) {
|
||
html += `<div><strong>问题:</strong>${escapeHtml(String(question))}</div>`;
|
||
}
|
||
if (context) {
|
||
html += `<div><strong>说明:</strong>${escapeHtml(String(context))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
const options = Array.isArray(args.options) ? args.options : [];
|
||
if (options.length > 0) {
|
||
html += '<div class="tool-result-content">';
|
||
html += '<div class="tool-result-meta">';
|
||
html += '<div><strong>提供的选项:</strong></div>';
|
||
options.forEach((option: any, idx: number) => {
|
||
const label = String(option?.label || option?.id || `选项 ${idx + 1}`);
|
||
const desc = String(option?.description || '').trim();
|
||
html += `<div>${idx + 1}. ${escapeHtml(label)}${desc ? ` — ${escapeHtml(desc)}` : ''}</div>`;
|
||
});
|
||
html += '</div></div>';
|
||
}
|
||
|
||
if (answerText) {
|
||
html += '<div class="tool-result-content">';
|
||
html += '<div class="tool-result-meta">';
|
||
answerText
|
||
.split('\n')
|
||
.map((line) => line.trim())
|
||
.filter(Boolean)
|
||
.forEach((line) => {
|
||
const separator = line.indexOf(':');
|
||
if (separator > 0) {
|
||
const label = line.slice(0, separator + 1);
|
||
const value = line.slice(separator + 1);
|
||
html += `<div><strong>${escapeHtml(label)}</strong>${escapeHtml(value)}</div>`;
|
||
} else {
|
||
html += `<div><strong>用户回答:</strong>${escapeHtml(line)}</div>`;
|
||
}
|
||
});
|
||
html += '</div></div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderManagePersonalization(result: any, args: any): string {
|
||
const action = String(args.action || result.action || 'read');
|
||
const status = formatToolStatusLabel(result, action === 'update' ? '✓ 已更新' : '✓ 已读取');
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>操作:</strong>${escapeHtml(action === 'update' ? '更新配置' : '读取配置')}</div>`;
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
|
||
if (!result?.success) {
|
||
if (result?.error) {
|
||
html += `<div><strong>错误:</strong>${escapeHtml(String(result.error))}</div>`;
|
||
}
|
||
if (Array.isArray(result?.validation_errors) && result.validation_errors.length > 0) {
|
||
html += `<div><strong>校验:</strong>${escapeHtml(result.validation_errors.join(';'))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
return html;
|
||
}
|
||
|
||
if (action === 'update') {
|
||
const field = String(result.updated_field || args.field || '');
|
||
const newValue = result.updated_value ?? args.value;
|
||
|
||
if (field) {
|
||
html += `<div><strong>修改项:</strong>${escapeHtml(formatPersonalizationFieldLabel(field))}</div>`;
|
||
html += `<div><strong>修改后:</strong>${escapeHtml(formatPersonalizationFieldValue(field, newValue))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
// ===== 待办事项类 =====
|
||
function renderTodoCreate(result: any, args: any): string {
|
||
const status = formatToolStatusLabel(result, '✓ 已创建');
|
||
const title = args.title || result.title || '';
|
||
const tasks = args.tasks || result.tasks || [];
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += `<div><strong>标题:</strong>${escapeHtml(title)}</div>`;
|
||
html += '</div>';
|
||
|
||
if (tasks.length > 0) {
|
||
html += '<div class="tool-result-content">';
|
||
html += '<div class="todo-list">';
|
||
tasks.forEach((task: any) => {
|
||
const taskText = typeof task === 'string' ? task : task.text || task.title || '';
|
||
html += `<div class="todo-item"><input type="checkbox" disabled /> ${escapeHtml(taskText)}</div>`;
|
||
});
|
||
html += '</div>';
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderTodoUpdate(result: any, args: any): string {
|
||
const status = formatToolStatusLabel(result, '✓ 已更新');
|
||
const title = args.title || result.title || '';
|
||
const tasks = result.tasks || args.tasks || [];
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += `<div><strong>标题:</strong>${escapeHtml(title)}</div>`;
|
||
html += '</div>';
|
||
|
||
if (tasks.length > 0) {
|
||
html += '<div class="tool-result-content">';
|
||
html += '<div class="todo-list">';
|
||
tasks.forEach((task: any) => {
|
||
const taskText = typeof task === 'string' ? task : task.text || task.title || '';
|
||
const completed = typeof task === 'object' && (task.completed || task.done || task.checked);
|
||
html += `<div class="todo-item"><input type="checkbox" ${completed ? 'checked' : ''} disabled /> ${escapeHtml(taskText)}</div>`;
|
||
});
|
||
html += '</div>';
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
// ===== 彩蛋类 =====
|
||
function renderEasterEgg(result: any, args: any): string {
|
||
const status = formatToolStatusLabel(result, '✓ 已触发');
|
||
const type = result.type || args.type || '';
|
||
const content = result.content || result.message || '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
html += `<div><strong>类型:</strong>${escapeHtml(type)}</div>`;
|
||
html += '</div>';
|
||
|
||
if (content) {
|
||
html += '<div class="tool-result-content">';
|
||
html += `<div class="easter-egg-content">${escapeHtml(content)}</div>`;
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
// ===== 子智能体类 =====
|
||
function renderCreateSubAgent(result: any, args: any): string {
|
||
const status = formatToolStatusLabel(result, '✓ 已创建', '✗ 创建失败');
|
||
const agentId = result.agent_id ?? args.agent_id ?? '';
|
||
const taskId = result.task_id ?? '';
|
||
const deliverablesDir = result.deliverables_dir ?? '';
|
||
const taskDescription = args.task ?? '';
|
||
const message = result.message ?? result.summary ?? '';
|
||
|
||
const stats = result.stats || {};
|
||
const runtimeSeconds =
|
||
result.runtime_seconds ?? result.elapsed_seconds ?? stats.runtime_seconds ?? 0;
|
||
const apiCalls = stats.api_calls ?? stats.turn_count ?? 0;
|
||
const toolCount =
|
||
(stats.files_read || 0) +
|
||
(stats.write_files || 0) +
|
||
(stats.edit_files || 0) +
|
||
(stats.searches || 0) +
|
||
(stats.web_pages || 0) +
|
||
(stats.commands || 0);
|
||
const hasStats = runtimeSeconds > 0 || apiCalls > 0 || toolCount > 0;
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
if (agentId !== '') {
|
||
html += `<div><strong>子智能体 ID:</strong>${escapeHtml(String(agentId))}</div>`;
|
||
}
|
||
if (taskId !== '') {
|
||
html += `<div><strong>任务 ID:</strong>${escapeHtml(String(taskId))}</div>`;
|
||
}
|
||
if (deliverablesDir !== '') {
|
||
html += `<div><strong>交付目录:</strong>${escapeHtml(String(deliverablesDir))}</div>`;
|
||
}
|
||
if (taskDescription) {
|
||
const preview = String(taskDescription).slice(0, 200);
|
||
const suffix = String(taskDescription).length > 200 ? '…' : '';
|
||
html += `<div><strong>任务:</strong>${escapeHtml(preview + suffix)}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
if (message || hasStats) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
if (hasStats) {
|
||
html += '<div class="content-label">执行统计</div>';
|
||
if (runtimeSeconds > 0) {
|
||
html += `<div><strong>工作时间:</strong>${formatDuration(runtimeSeconds)}</div>`;
|
||
}
|
||
if (apiCalls > 0) {
|
||
html += `<div><strong>调用次数:</strong>${apiCalls} 次</div>`;
|
||
}
|
||
if (toolCount > 0) {
|
||
html += `<div><strong>工具次数:</strong>${toolCount} 次</div>`;
|
||
}
|
||
}
|
||
if (message) {
|
||
if (hasStats) {
|
||
html += '<div class="content-label">最终回复</div>';
|
||
}
|
||
html += `<div>${escapeHtml(String(message))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderTerminateSubAgent(result: any, args: any): string {
|
||
const status = formatToolStatusLabel(result, '✓ 已关闭', '✗ 关闭失败');
|
||
const agentId = result.agent_id ?? args.agent_id ?? '';
|
||
const taskId = result.task_id ?? '';
|
||
const message = result.message ?? result.system_message ?? '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
if (agentId !== '') {
|
||
html += `<div><strong>子智能体 ID:</strong>${escapeHtml(String(agentId))}</div>`;
|
||
}
|
||
if (taskId !== '') {
|
||
html += `<div><strong>任务 ID:</strong>${escapeHtml(String(taskId))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
if (message) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += `<div>${escapeHtml(String(message))}</div>`;
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderGetSubAgentStatus(result: any): string {
|
||
if (!result.success) {
|
||
const error = result.error ?? '查询失败';
|
||
return `<div class="tool-result-error">⚠️ ${escapeHtml(String(error))}</div>`;
|
||
}
|
||
|
||
const results = Array.isArray(result.results) ? result.results : [];
|
||
if (results.length === 0) {
|
||
return '<div class="tool-result-empty">未返回子智能体状态。</div>';
|
||
}
|
||
|
||
let html = '<div class="sub-agent-status-list">';
|
||
results.forEach((item: any) => {
|
||
const agentId = item.agent_id ?? '';
|
||
const found = item.found !== false;
|
||
const status = String(item.status || '');
|
||
const taskId = item.task_id ?? '';
|
||
const summary = item.summary ?? item.final_result?.message ?? item.final_result?.summary ?? '';
|
||
|
||
html += '<div class="sub-agent-status-item">';
|
||
html += `<div class="sub-agent-status-header">子智能体 #${escapeHtml(String(agentId))}</div>`;
|
||
|
||
if (!found) {
|
||
html += '<div class="tool-result-meta">';
|
||
html += '<div><strong>状态:</strong>不存在</div>';
|
||
html += '</div>';
|
||
} else {
|
||
html += '<div class="tool-result-meta">';
|
||
if (status === 'completed') {
|
||
html += '<div><strong>状态:</strong>已完成</div>';
|
||
} else if (status === 'terminated') {
|
||
html += '<div><strong>状态:</strong>已终止</div>';
|
||
} else if (status === 'running') {
|
||
html += '<div><strong>状态:</strong>运行中</div>';
|
||
} else if (status === 'pending') {
|
||
html += '<div><strong>状态:</strong>等待中</div>';
|
||
} else {
|
||
html += `<div><strong>状态:</strong>${escapeHtml(status || '未知')}</div>`;
|
||
}
|
||
if (taskId !== '') {
|
||
html += `<div><strong>任务 ID:</strong>${escapeHtml(String(taskId))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
if (summary) {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += `<div>${escapeHtml(String(summary))}</div>`;
|
||
html += '</div>';
|
||
}
|
||
}
|
||
|
||
html += '</div>';
|
||
});
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderSendMessageToSubAgent(result: any, args: any): string {
|
||
const status = formatToolStatusLabel(result, '✓ 已发送', '✗ 发送失败');
|
||
const agentId = args.agent_id ?? result.agent_id ?? '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
if (agentId !== '') {
|
||
html += `<div><strong>子智能体 ID:</strong>${escapeHtml(String(agentId))}</div>`;
|
||
}
|
||
if (!result?.success && result?.error) {
|
||
html += `<div><strong>错误:</strong>${escapeHtml(String(result.error))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderAnswerSubAgentQuestion(result: any, args: any): string {
|
||
const status = formatToolStatusLabel(result, '✓ 已回复', '✗ 回复失败');
|
||
const questionId = args.question_id ?? result.question_id ?? '';
|
||
const answer = args.answer ?? '';
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
if (questionId) {
|
||
html += `<div><strong>问题 ID:</strong>${escapeHtml(String(questionId))}</div>`;
|
||
}
|
||
if (!result?.success && result?.error) {
|
||
html += `<div><strong>错误:</strong>${escapeHtml(String(result.error))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
if (answer && typeof answer === 'string') {
|
||
html += '<div class="tool-result-content scrollable">';
|
||
html += '<div class="content-label">回复内容</div>';
|
||
const preview = String(answer).slice(0, 500);
|
||
const suffix = String(answer).length > 500 ? '…' : '';
|
||
html += `<pre>${escapeHtml(preview + suffix)}</pre>`;
|
||
html += '</div>';
|
||
}
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderCreateCustomAgent(result: any, args: any): string {
|
||
const status = formatToolStatusLabel(result, '✓ 已创建', '✗ 创建失败');
|
||
const roleId = args.role_id ?? result.role_id ?? '';
|
||
const name = args.name ?? result.name ?? roleId;
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>状态:</strong>${status}</div>`;
|
||
if (roleId !== '') {
|
||
html += `<div><strong>角色 ID:</strong>${escapeHtml(String(roleId))}</div>`;
|
||
}
|
||
if (name && name !== roleId) {
|
||
html += `<div><strong>角色名:</strong>${escapeHtml(String(name))}</div>`;
|
||
}
|
||
if (!result?.success && result?.error) {
|
||
html += `<div><strong>错误:</strong>${escapeHtml(String(result.error))}</div>`;
|
||
}
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderListAgents(result: any): string {
|
||
if (!result?.success) {
|
||
const error = result?.error ?? '查询失败';
|
||
return `<div class="tool-result-error">⚠️ ${escapeHtml(String(error))}</div>`;
|
||
}
|
||
|
||
const roles = Array.isArray(result.roles) ? result.roles : [];
|
||
if (roles.length === 0) {
|
||
return '<div class="tool-result-empty">当前没有可用角色。</div>';
|
||
}
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>角色数量:</strong>${roles.length}</div>`;
|
||
html += '</div>';
|
||
|
||
html += '<div class="search-result-list">';
|
||
roles.forEach((role: any) => {
|
||
const roleId = role.role_id || '未知';
|
||
const name = role.name || roleId;
|
||
const description = role.description || '';
|
||
const thinkingMode = role.thinking_mode || 'fast';
|
||
const isCustom = role.is_custom ? '是' : '否';
|
||
|
||
html += '<div class="search-result-item">';
|
||
html += `<div class="search-result-title">${escapeHtml(roleId)} — ${escapeHtml(name)}</div>`;
|
||
if (description) {
|
||
html += `<div>${escapeHtml(description)}</div>`;
|
||
}
|
||
html += `<div><strong>思考模式:</strong>${escapeHtml(thinkingMode)} | <strong>自定义:</strong>${escapeHtml(isCustom)}</div>`;
|
||
html += '</div>';
|
||
});
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
|
||
function renderListActiveSubAgents(result: any): string {
|
||
if (!result?.success) {
|
||
const error = result?.error ?? '查询失败';
|
||
return `<div class="tool-result-error">⚠️ ${escapeHtml(String(error))}</div>`;
|
||
}
|
||
|
||
const agents = Array.isArray(result.agents) ? result.agents : [];
|
||
if (agents.length === 0) {
|
||
return '<div class="tool-result-empty">当前会话没有活跃子智能体。</div>';
|
||
}
|
||
|
||
let html = '<div class="tool-result-meta">';
|
||
html += `<div><strong>活跃数量:</strong>${agents.length}</div>`;
|
||
html += '</div>';
|
||
|
||
html += '<div class="sub-agent-status-list">';
|
||
agents.forEach((agent: any) => {
|
||
const agentId = agent.agent_id ?? '?';
|
||
const displayName = agent.display_name || `Agent_${agentId}`;
|
||
const status = agent.status || 'unknown';
|
||
const summary = agent.summary || '';
|
||
const lastOutput = agent.last_output || '';
|
||
|
||
html += '<div class="sub-agent-status-item">';
|
||
html += `<div class="sub-agent-status-header">#${escapeHtml(String(agentId))} ${escapeHtml(displayName)} [${escapeHtml(status)}]</div>`;
|
||
html += '<div class="tool-result-meta">';
|
||
if (summary) {
|
||
html += `<div><strong>任务:</strong>${escapeHtml(String(summary))}</div>`;
|
||
}
|
||
if (lastOutput) {
|
||
const preview = String(lastOutput).slice(0, 120);
|
||
const suffix = String(lastOutput).length > 120 ? '…' : '';
|
||
html += `<div><strong>最近输出:</strong>${escapeHtml(preview + suffix)}</div>`;
|
||
}
|
||
html += '</div>';
|
||
html += '</div>';
|
||
});
|
||
html += '</div>';
|
||
|
||
return html;
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
/* 工具增强显示样式 - 不使用 scoped 以便应用到 v-html 内容 */
|
||
.tool-result-meta {
|
||
margin-bottom: 12px;
|
||
padding: 8px 12px;
|
||
background: var(--hover-bg);
|
||
border-radius: 6px;
|
||
font-size: 13px;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
.tool-result-meta > div {
|
||
margin: 4px 0;
|
||
}
|
||
|
||
.tool-result-content {
|
||
margin-top: 12px;
|
||
}
|
||
|
||
.tool-result-content.scrollable {
|
||
max-height: 400px;
|
||
overflow-y: auto;
|
||
border: 1px solid var(--border-default);
|
||
border-radius: 6px;
|
||
padding: 8px;
|
||
background: color-mix(in srgb, transparent 99%, var(--text-primary));
|
||
}
|
||
|
||
/* 结构化显示滚动条样式(参考 git 状态侧边栏文件列表,滚动槽透明贴合灰色底色) */
|
||
.tool-result-content.scrollable,
|
||
.tool-result-diff.scrollable,
|
||
.code-block pre,
|
||
.output-block pre {
|
||
scrollbar-width: thin; /* Firefox */
|
||
scrollbar-color: color-mix(in srgb, var(--claude-text-secondary) 55%, transparent) transparent;
|
||
}
|
||
|
||
.tool-result-content.scrollable::-webkit-scrollbar,
|
||
.tool-result-diff.scrollable::-webkit-scrollbar,
|
||
.code-block pre::-webkit-scrollbar,
|
||
.output-block pre::-webkit-scrollbar {
|
||
width: 10px;
|
||
height: 10px;
|
||
}
|
||
|
||
.tool-result-content.scrollable::-webkit-scrollbar-track,
|
||
.tool-result-diff.scrollable::-webkit-scrollbar-track,
|
||
.code-block pre::-webkit-scrollbar-track,
|
||
.output-block pre::-webkit-scrollbar-track {
|
||
background: transparent;
|
||
border-radius: 999px;
|
||
margin: 8px;
|
||
}
|
||
|
||
.tool-result-content.scrollable::-webkit-scrollbar-thumb,
|
||
.tool-result-diff.scrollable::-webkit-scrollbar-thumb,
|
||
.code-block pre::-webkit-scrollbar-thumb,
|
||
.output-block pre::-webkit-scrollbar-thumb {
|
||
background: color-mix(in srgb, var(--claude-text-secondary) 55%, transparent);
|
||
border-radius: 999px;
|
||
border: 2px solid transparent;
|
||
background-clip: padding-box;
|
||
}
|
||
|
||
.tool-result-content pre {
|
||
margin: 0;
|
||
white-space: pre-wrap;
|
||
word-wrap: break-word;
|
||
font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.content-label {
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
font-size: 13px;
|
||
}
|
||
|
||
.tool-result-empty {
|
||
color: var(--text-secondary);
|
||
font-style: italic;
|
||
padding: 8px;
|
||
}
|
||
|
||
/* 搜索结果 */
|
||
.search-result-list {
|
||
margin-top: 12px;
|
||
}
|
||
|
||
.search-result-item {
|
||
padding: 10px;
|
||
margin-bottom: 8px;
|
||
border: 1px solid var(--border-default);
|
||
border-radius: 6px;
|
||
background: color-mix(in srgb, transparent 99%, var(--text-primary));
|
||
}
|
||
|
||
/* 暗色模式下的搜索结果 */
|
||
:root[data-theme='dark'] .search-result-item {
|
||
background: var(--badge-bg);
|
||
border: 1px solid var(--border-default);
|
||
}
|
||
|
||
.search-result-title {
|
||
font-weight: 600;
|
||
margin-bottom: 4px;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.search-result-url {
|
||
font-size: 12px;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
:root[data-theme='dark'] .search-result-url {
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.search-result-url a {
|
||
color: var(--state-info);
|
||
text-decoration: none;
|
||
}
|
||
|
||
:root[data-theme='dark'] .search-result-url a {
|
||
color: var(--state-info);
|
||
}
|
||
|
||
.search-result-url a:hover {
|
||
text-decoration: underline;
|
||
}
|
||
|
||
/* 文件差异 */
|
||
.tool-result-diff {
|
||
margin-top: 12px;
|
||
font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.tool-result-diff.scrollable {
|
||
max-height: 400px;
|
||
overflow-y: auto;
|
||
border: 1px solid var(--border-default);
|
||
border-radius: 6px;
|
||
padding: 8px;
|
||
background: color-mix(in srgb, transparent 99%, var(--text-primary));
|
||
}
|
||
|
||
.diff-line {
|
||
display: grid;
|
||
grid-template-columns: 5ch 1ch minmax(0, 1fr);
|
||
column-gap: 8px;
|
||
padding: 2px 4px;
|
||
margin: 0;
|
||
align-items: start;
|
||
}
|
||
|
||
.diff-line-number {
|
||
color: var(--claude-text-tertiary);
|
||
text-align: right;
|
||
user-select: none;
|
||
}
|
||
|
||
.diff-marker {
|
||
color: var(--claude-text-secondary);
|
||
text-align: center;
|
||
user-select: none;
|
||
}
|
||
|
||
.diff-content {
|
||
min-width: 0;
|
||
white-space: pre-wrap;
|
||
word-wrap: break-word;
|
||
}
|
||
|
||
.diff-remove {
|
||
background: var(--diff-del-bg);
|
||
color: var(--state-danger);
|
||
}
|
||
|
||
.diff-add {
|
||
background: var(--diff-add-bg);
|
||
color: var(--state-success);
|
||
}
|
||
|
||
.diff-separator {
|
||
text-align: left;
|
||
color: var(--claude-text-tertiary);
|
||
margin: 8px 0;
|
||
}
|
||
|
||
.diff-separator .diff-content {
|
||
font-size: 16px;
|
||
font-weight: 700;
|
||
line-height: 1.1;
|
||
}
|
||
|
||
.diff-operation {
|
||
font-weight: 600;
|
||
margin: 8px 0 4px;
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
/* 图片 */
|
||
.tool-result-image {
|
||
margin-top: 12px;
|
||
text-align: center;
|
||
}
|
||
|
||
.tool-result-image img {
|
||
max-width: 100%;
|
||
height: auto;
|
||
border-radius: 6px;
|
||
border: 1px solid var(--border-default);
|
||
}
|
||
|
||
/* 代码块 */
|
||
.code-block {
|
||
margin-top: 12px;
|
||
}
|
||
|
||
.code-label,
|
||
.output-label {
|
||
font-weight: 600;
|
||
margin-bottom: 6px;
|
||
font-size: 13px;
|
||
}
|
||
|
||
.code-block pre,
|
||
.output-block pre {
|
||
margin: 0;
|
||
padding: 12px;
|
||
background: var(--hover-bg);
|
||
border: 1px solid var(--border-default);
|
||
border-radius: 6px;
|
||
overflow-x: auto;
|
||
font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
white-space: pre-wrap;
|
||
word-wrap: break-word;
|
||
}
|
||
|
||
/* 暗色模式:代码/输出统一白字,去除任何描边/阴影观感 */
|
||
:root[data-theme='dark'] .code-block pre,
|
||
:root[data-theme='dark'] .output-block pre {
|
||
color: var(--text-primary) !important;
|
||
background: var(--hover-bg);
|
||
border-color: var(--border-strong);
|
||
text-shadow: none !important;
|
||
}
|
||
|
||
:root[data-theme='dark'] .code-block pre code,
|
||
:root[data-theme='dark'] .output-block pre code {
|
||
color: var(--text-primary) !important;
|
||
text-shadow: none !important;
|
||
-webkit-text-fill-color: var(--text-primary);
|
||
}
|
||
|
||
.output-block {
|
||
margin-top: 12px;
|
||
}
|
||
|
||
/* 记忆 */
|
||
.memory-section {
|
||
margin-bottom: 12px;
|
||
}
|
||
|
||
.memory-item {
|
||
padding: 6px 8px;
|
||
margin: 4px 0;
|
||
border-radius: 4px;
|
||
font-size: 13px;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
.memory-add {
|
||
background: var(--diff-add-bg);
|
||
color: var(--state-success);
|
||
}
|
||
|
||
.memory-update {
|
||
background: color-mix(in srgb, var(--state-warning) 10%, transparent);
|
||
color: var(--state-warning);
|
||
}
|
||
|
||
.memory-delete {
|
||
background: var(--diff-del-bg);
|
||
color: var(--state-danger);
|
||
}
|
||
|
||
/* 待办事项 */
|
||
.todo-list {
|
||
padding: 8px;
|
||
}
|
||
|
||
.todo-item {
|
||
padding: 6px 0;
|
||
font-size: 13px;
|
||
line-height: 1.5;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
|
||
.todo-item input[type='checkbox'] {
|
||
margin: 0;
|
||
}
|
||
|
||
/* 彩蛋 */
|
||
.easter-egg-content {
|
||
padding: 12px;
|
||
background: linear-gradient(
|
||
135deg,
|
||
color-mix(in srgb, var(--decorative-gold) 10%, transparent),
|
||
color-mix(in srgb, var(--decorative-pink) 10%, transparent)
|
||
);
|
||
border: 1px solid color-mix(in srgb, var(--decorative-gold) 30%, transparent);
|
||
border-radius: 8px;
|
||
font-size: 14px;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
/* 搜索匹配项 */
|
||
.search-match-separator {
|
||
text-align: center;
|
||
color: var(--text-tertiary);
|
||
margin: 12px 0;
|
||
font-size: 16px;
|
||
}
|
||
|
||
.search-match-item {
|
||
margin-bottom: 12px;
|
||
padding: 8px;
|
||
background: var(--hover-bg);
|
||
border-radius: 6px;
|
||
}
|
||
|
||
:root[data-theme='dark'] .search-match-item {
|
||
background: var(--hover-bg);
|
||
}
|
||
|
||
.search-match-line {
|
||
font-size: 11px;
|
||
color: var(--text-secondary);
|
||
margin-bottom: 4px;
|
||
font-weight: 600;
|
||
}
|
||
|
||
:root[data-theme='dark'] .search-match-line {
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.search-match-item pre {
|
||
margin: 0;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
/* 提取片段 */
|
||
.segment-separator {
|
||
text-align: center;
|
||
color: var(--text-tertiary);
|
||
margin: 12px 0;
|
||
font-size: 16px;
|
||
}
|
||
|
||
.segment-item {
|
||
margin-bottom: 12px;
|
||
padding: 8px;
|
||
background: var(--hover-bg);
|
||
border-radius: 6px;
|
||
}
|
||
|
||
:root[data-theme='dark'] .segment-item {
|
||
background: var(--hover-bg);
|
||
}
|
||
|
||
.segment-range {
|
||
font-size: 11px;
|
||
color: var(--text-secondary);
|
||
margin-bottom: 4px;
|
||
font-weight: 600;
|
||
}
|
||
|
||
:root[data-theme='dark'] .segment-range {
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.segment-item pre {
|
||
margin: 0;
|
||
font-size: 12px;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
/* 个性化管理 */
|
||
.personalization-message {
|
||
padding: 12px;
|
||
background: var(--hover-bg);
|
||
border-radius: 6px;
|
||
font-size: 13px;
|
||
line-height: 1.6;
|
||
white-space: pre-wrap;
|
||
}
|
||
|
||
:root[data-theme='dark'] .personalization-message {
|
||
background: var(--hover-bg);
|
||
}
|
||
|
||
.personalization-config-title {
|
||
font-weight: 600;
|
||
margin-bottom: 8px;
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
:root[data-theme='dark'] .personalization-config-title {
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.personalization-config-list {
|
||
display: grid;
|
||
gap: 6px;
|
||
}
|
||
|
||
.config-item {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
padding: 6px 10px;
|
||
background: var(--hover-bg);
|
||
border-radius: 4px;
|
||
font-size: 12px;
|
||
}
|
||
|
||
:root[data-theme='dark'] .config-item {
|
||
background: var(--hover-bg);
|
||
}
|
||
|
||
.config-label {
|
||
color: var(--text-secondary);
|
||
font-weight: 500;
|
||
}
|
||
|
||
:root[data-theme='dark'] .config-label {
|
||
color: var(--text-secondary);
|
||
}
|
||
|
||
.config-value {
|
||
color: var(--text-primary);
|
||
font-weight: 400;
|
||
}
|
||
|
||
:root[data-theme='dark'] .config-value {
|
||
color: var(--text-primary);
|
||
}
|
||
</style>
|