mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 21:05:51 +00:00
* feat: 适配 zed acp 协议 * docs: 完善 acp 文档 * feat: integrate feature branches + daemon/job 命令层级化 + 跨平台后台引擎 Cherry-picked from origin/lint/preview (637c908), excluding lint-only changes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: correct detectMimeFromBase64 to decode raw bytes from base64 Cherry-picked from origin/lint/preview (ee36954). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: daemon 子进程 spawn 跨平台修复 + CliLaunchSpec 集中化重构 Cherry-picked from origin/lint/preview (c5f52cd), excluding lint-only formatting changes. - 新建 src/utils/cliLaunch.ts: 集中化 CLI 子进程启动层 - 修复 --daemon-worker=kind 等号格式解析 - 修复 daemon/bg fast path 缺少 setShellIfWindows() - 修复 checkPathExists 用 existsSync 替代 execSync('dir') - 7 个 spawn 站点迁移到 CliLaunchSpec Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: merge tsconfig.base.json into tsconfig.json with full compiler options The cherry-pick from637c908dropped jsx/strict/etc settings when removing tsconfig.base.json. This commit restores them in a single tsconfig.json. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: merge tsconfig.base.json into tsconfig.json with full compiler options The cherry-pick from637c908dropped jsx/strict/etc settings when removing tsconfig.base.json. This commit restores them in a single tsconfig.json. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
79 lines
2.5 KiB
TypeScript
79 lines
2.5 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 } 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();
|
|
|
|
const defineArgs = Object.entries(defines).flatMap(([k, v]) => [
|
|
"-d",
|
|
`${k}:${v}`,
|
|
]);
|
|
|
|
// Bun --feature flags: enable feature() gates at runtime.
|
|
// Default features enabled in dev mode.
|
|
const DEFAULT_FEATURES = [
|
|
"BUDDY", "TRANSCRIPT_CLASSIFIER", "BRIDGE_MODE",
|
|
"AGENT_TRIGGERS_REMOTE", "CHICAGO_MCP", "VOICE_MODE",
|
|
"SHOT_STATS", "PROMPT_CACHE_BREAK_DETECTION", "TOKEN_BUDGET",
|
|
// P0: local features
|
|
"AGENT_TRIGGERS",
|
|
"ULTRATHINK",
|
|
"BUILTIN_EXPLORE_PLAN_AGENTS",
|
|
"LODESTONE",
|
|
// P1: API-dependent features
|
|
"EXTRACT_MEMORIES", "VERIFICATION_AGENT",
|
|
"KAIROS_BRIEF", "AWAY_SUMMARY", "ULTRAPLAN",
|
|
// P2: daemon + remote control server
|
|
"DAEMON",
|
|
// ACP (Agent Client Protocol) agent mode
|
|
"ACP",
|
|
// PR-package restored features
|
|
"WORKFLOW_SCRIPTS",
|
|
"HISTORY_SNIP",
|
|
"CONTEXT_COLLAPSE",
|
|
"MONITOR_TOOL",
|
|
"FORK_SUBAGENT",
|
|
"UDS_INBOX",
|
|
"KAIROS",
|
|
"COORDINATOR_MODE",
|
|
"LAN_PIPES",
|
|
"BG_SESSIONS",
|
|
"TEMPLATES",
|
|
// "REVIEW_ARTIFACT", // API 请求无响应,需进一步排查 schema 兼容性
|
|
// P3: poor mode (disable extract_memories + prompt_suggestion)
|
|
"POOR",
|
|
];
|
|
|
|
// 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_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);
|