Introduction

One of the extension methods for DSH is through plugins. For users who maintain local files in OpenAI Codex, a common issue is that these files are scattered across skills, instructions, and config; reusing them in DeepSeek Harness requires manual copying or adjustment.

dsh-plugin-codex-bridge addresses this scenario by bridging OpenAI Codex’s skills, instructions, and configuration to DeepSeek Harness. The README describes the plugin as offering zero migration.

What is this

dsh-plugin-codex-bridge is maintained by YYTbit and is licensed under MIT. The plugin name is dsh-plugin-codex-bridge, and the GitHub repository is:

https://github.com/YYTbit/dsh-plugin-codex-bridge

It solves the problem of reusing existing Codex files within DSH, rather than rewriting a new set of Codex assets.

Core Features

The plugin covers three verified Codex file paths.

  1. Skills path:
~/.codex/skills/<name>/SKILL.md

The plugin injects these files as available skills into DSH.

  1. Instructions path:
~/.codex/instructions.md

The plugin injects this file as the system prompt.

  1. Config path:
~/.codex/config.toml

The plugin injects model/provider context from this file.

Installation and Enablement

First, confirm the name of the DSH profile to be used. The installation command is:

dsh plugin --profile your-profile add dsh-plugin-codex-bridge

After execution, dsh-plugin-codex-bridge will be added to the specified profile.

Typical Usage

After installation, you can enable skills, instructions, and config using the example configuration from the README:

- id: codex-bridge
  name: dsh-plugin-codex-bridge
  config:
    enableSkills: true
    maxSkills: 30
    enableInstructions: true
    enableConfig: true

The configuration items in the example include enableSkills, maxSkills, enableInstructions, and enableConfig. An example value for maxSkills is 30.

Applicable Scenarios and Notes

Suitable for users who are already maintaining the following files:

~/.codex/skills/<name>/SKILL.md
~/.codex/instructions.md
~/.codex/config.toml

Before use, it is recommended to check the plugin source code and confirm the MIT license. The plugin runs within the dsh process and accesses the aforementioned Codex files with the current dsh process permissions; therefore, do not install it indiscriminately from untrusted sources.

The DSH community directory is an independent site and is not the official app store for DeepSeek/Huafang.

Conclusion

The value of dsh-plugin-codex-bridge lies in directly connecting existing Codex skills, instructions, and configuration to DSH, reducing the need for manual migration.

GitHub:

https://github.com/YYTbit/dsh-plugin-codex-bridge

The directory page URL is not included in the verified materials and will not be provided in this article.