mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-20 15:25:50 +00:00
- WebSearch: 默认 Tavily,适配器优先级 WEB_SEARCH_ADAPTER > settings.webSearchAdapter > tavily - WebFetch: 支持 Tavily /extract 返回 Markdown,移除 domain blacklist 远程检查 - 新增 /web-tools 命令面板(Search/Fetch 双 Tab + 二级配置菜单) - 新增 settings 字段: webSearchAdapter, webFetchAdapter, tavilyEndpointUrl, braveApiKey, exaApiKey, exaEndpointUrl, webFetchHttpTimeoutMs - 适配器联动: Tavily/Exa 从 settings 读取 endpoint 和 API key Co-Authored-By: deepseek-v4-pro <deepseek-ai@claude-code-best.win>
11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
import type { Command } from '../../commands.js'
|
|
|
|
const webTools = {
|
|
type: 'local-jsx',
|
|
name: 'web-tools',
|
|
description: 'Configure web search and web fetch backends',
|
|
load: () => import('./web-tools.js'),
|
|
} satisfies Command
|
|
|
|
export default webTools
|