Appearance
Deep Code
Deep Code 是开源的终端 AI 编程助手,专为 DeepSeek-V4 系列模型适配,支持深度思考、推理强度控制以及 Agent Skills。
Base URL: https://www.sky-ze.com
GitHub:lessweb/deepcode-cli
安装
bash
npm install -g @vegamo/deepcode-cli
deepcode --version需要 Node.js 18+。
配置
创建 ~/.deepcode/settings.json:
json
{
"env": {
"MODEL": "DeepSeek-V4-Flash",
"BASE_URL": "https://www.sky-ze.com/v1",
"API_KEY": "sk-your-opt-api-key"
},
"thinkingEnabled": true,
"reasoningEffort": "max"
}注意:此配置文件与 Deep Code VSCode 扩展共享。
| 选项 | 说明 |
|---|---|
MODEL | 模型名称,DeepSeek-V4-Flash |
BASE_URL | API 地址 |
thinkingEnabled | 启用深度思考模式,默认开启 |
reasoningEffort | "max" 或 "high" — 推理强度 |