mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 21:05:51 +00:00
- 新增 CORE_TOOLS 白名单常量(31 个核心工具),重构 isDeferredTool 为白名单制判定 - 新建 TF-IDF 工具索引模块(toolIndex.ts),复用 localSearch.ts 算法函数 - 新建 ExecuteTool 跨 API provider 统一工具执行入口 - 增强 ToolSearchTool:TF-IDF 搜索路径、discover: 模式、并行搜索合并、文本模式回退 - 新增 27 个单元测试,precheck 零错误通过(4108 tests pass) Co-Authored-By: glm-5.1[1m] <zai-org@claude-code-best.win>
61 lines
1.9 KiB
TypeScript
61 lines
1.9 KiB
TypeScript
#!/usr/bin/env bun
|
|
/**
|
|
* Dev entrypoint — launches cli.tsx with MACRO.* defines injected
|
|
* via Bun's -d flag (bunfig.toml [define] doesn't propagate to
|
|
* dynamically imported modules at runtime).
|
|
*/
|
|
import { join, dirname } from 'node:path'
|
|
import { fileURLToPath } from 'node:url'
|
|
import { getMacroDefines, DEFAULT_BUILD_FEATURES } from './defines.ts'
|
|
|
|
// Resolve project root from this script's location
|
|
const __filename = fileURLToPath(import.meta.url)
|
|
const __dirname = dirname(__filename)
|
|
const projectRoot = join(__dirname, '..')
|
|
const cliPath = join(projectRoot, 'src/entrypoints/cli.tsx')
|
|
|
|
const defines = {
|
|
...getMacroDefines(),
|
|
// React production mode — prevents 6,889+ _debugStack Error objects
|
|
// (12MB) from accumulating during long-running sessions.
|
|
// dev 模式使用 development 模式
|
|
'process.env.NODE_ENV': JSON.stringify('production'),
|
|
}
|
|
|
|
const defineArgs = Object.entries(defines).flatMap(([k, v]) => [
|
|
'-d',
|
|
`${k}:${v}`,
|
|
])
|
|
|
|
// Bun --feature flags: enable feature() gates at runtime.
|
|
// Uses the shared DEFAULT_BUILD_FEATURES list from defines.ts.
|
|
|
|
// Any env var matching FEATURE_<NAME>=1 will also enable that feature.
|
|
// e.g. FEATURE_PROACTIVE=1 bun run dev
|
|
const envFeatures = Object.entries(process.env)
|
|
.filter(([k]) => k.startsWith('FEATURE_'))
|
|
.map(([k]) => k.replace('FEATURE_', ''))
|
|
|
|
const allFeatures = [...new Set([...DEFAULT_BUILD_FEATURES, ...envFeatures])]
|
|
const featureArgs = allFeatures.flatMap(name => ['--feature', name])
|
|
|
|
// If BUN_INSPECT is set, pass --inspect-wait to the child process
|
|
const inspectArgs = process.env.BUN_INSPECT
|
|
? ['--inspect-wait=' + process.env.BUN_INSPECT]
|
|
: []
|
|
|
|
const result = Bun.spawnSync(
|
|
[
|
|
'bun',
|
|
...inspectArgs,
|
|
'run',
|
|
...defineArgs,
|
|
...featureArgs,
|
|
cliPath,
|
|
...process.argv.slice(2),
|
|
],
|
|
{ stdio: ['inherit', 'inherit', 'inherit'], cwd: projectRoot },
|
|
)
|
|
|
|
process.exit(result.exitCode ?? 0)
|