wingoo/codex-plugin-dsh1

codex-plugin-dsh

Codex App Server model provider plugin for DeepSeek Harness

AI 분석

核心用途是将本地安装的 OpenAI Codex CLI 接入 DSH 作为模型提供商。适合需要调用本地 Codex 进行代码生成任务的用户,要求宿主机已全局安装并登录 Codex CLI。

패키지
codex-plugin-dsh
버전
0.1.0
라이선스
MIT
최근 업데이트
2026. 8. 13.

설치

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:wingoo/codex-plugin-dsh

配置

安装后会使用安全默认值自动启用。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。