je00/dsh-codex-agent-bridge2

@jadynchou/dsh-codex-agent-bridge

Connect DeepSeek Harness agents to authenticated Codex App Server sessions

AI 分析

核心用途是打通 DSH 智能体与 Codex 沙箱环境的连接。适合需要在已认证的 Codex 服务器会话中执行动态工具和代码,且需要遵循 DSH 权限策略的开发者。

パッケージ
@jadynchou/dsh-codex-agent-bridge
バージョン
0.1.1
ライセンス
MIT
最終更新
2026/08/14

インストール

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

ドキュメント

README 全文を読む ↗

Configuration

The default configuration uses the native Codex read-only sandbox. DSH dynamic Tools still execute through ctx.tools.execute() and the DSH permission policy. Override the plugin row in the profile's cordis.patch.yml when needed:

- id: codex-agent-bridge
  config:
    codexCommand: codex
    sandbox: read-only
    modelCacheMs: 300000

DSH patch rows replace the complete config value instead of deeply merging keys, so keep every non-default key you still need when overriding this row.

OptionDefaultDescription
codexCommandcodexExecutable name or absolute Codex CLI path; Windows .cmd and .bat launchers are supported.
env{}Variables layered onto DSH's scrubbed subprocess environment. Do not store secrets in YAML.
disposeGraceMs3000Grace period before the managed App Server process tree is forcefully terminated.
modelCacheMs300000Successful model-catalog cache duration; use 0 to refresh every time.
includeHiddenModelsfalseInclude models hidden from the default Codex picker.
sandboxread-onlyNative Codex sandbox: read-only, workspace-write, or danger-full-access.
catalogCwdDSH process cwdAbsolute working directory used only for the model-catalog App Server.