codex-plugin-dsh
适用于 DeepSeek Harness 的 Codex App Server 模型服务商插件
AI 分析
核心用途是将本地安装的 OpenAI Codex CLI 接入 DSH 作为模型提供商。适合需要调用本地 Codex 进行代码生成任务的用户,要求宿主机已全局安装并登录 Codex CLI。
安裝
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:wingoo/codex-plugin-dsh說明文件
閱讀完整 README ↗配置
安装后会使用安全默认值自动启用。profile 可以在自己的 cordis.patch.yml 中覆盖已插入的插件行:
- id: codex-app-server-provider
config:
executable: codex
env: {}
modelCacheMs: 30000
catalogTimeoutMs: 10000
turnTimeoutMs: 600000
disposeGraceMs: 3000
stderrMaxBytes: 16384
modelPageSize: 100
executable 由 DSH 在 subprocess provider 的执行环境中解析,因此如果未来使用远程或沙箱 subprocess provider,Codex 也必须安装在同一个执行环境中。env 是显式子进程环境覆盖,不要把凭证写进已提交的 profile。