
























由于公益站太多,所以弄了个脚本可以改claude 配置,佬友们可以拿去用,可以用bun run 执行 import * as fs from 'fs'; import * as os from 'os'; import * as path from 'path'; import * as process from 'process'; import * as readline from 'readline'; // 1. Define our TypeScript interfaces interface EnvValues { ANTHROPIC_BASE_URL: string; ANTHROPIC_AUTH_TOKEN: string; [key: string]: string; } interface ConfigProfile { env?: Readonly<EnvValues>; } const CONFIG_FILE = path.join(os.homedir(), '.claude', 'settings.json'); // 3. D...
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。