DeepSeek Harness plugin

codex-dsh-bridge

DeepSeek Harness companion for the Codex DSH Bridge.

Jump to install

Source facts

Repository
knottttt/codex-dsh-bridge
Latest update
Aug 17, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/knottttt/codex-dsh-bridge
Plugin: codex-dsh-bridge
Author: knottttt

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer2 files
README.mdSource · read only

<div align="left"> <h1>Codex DeepSeekHarness Bridge</h1> <p><strong>Let Codex dispatch local project tasks to DeepSeek Harness sessions. All code in this repository was generated by Codex.</strong></p>

<p><strong>ENGLISH</strong> | <a href="./README.zh-CN.md">简体中文</a></p>

<img src="./assets/codex-dsh-bridge-settings-en.png" alt="Codex DSH Bridge settings in DeepSeek Harness" width="780" /> </div>

---

Overview

codex-dsh-bridge connects Codex to a locally running DeepSeek Harness WebUI through its HTTP RPC API.

The repository contains both sides of the integration:

  • a Codex plugin with MCP tools and a collaboration skill;
  • a DeepSeek Harness companion that adds bridge controls to Harness settings.

Beginner one-click install

Requirements:

  • Windows PowerShell 5.1 or PowerShell 7;
  • Node.js 18 or newer;
  • Codex CLI with plugin support;
  • DeepSeek Harness with the dsh command available.

Download and run the installer:

$installer = Join-Path $env:TEMP "codex-dsh-bridge-install.ps1"
Invoke-WebRequest "https://raw.githubusercontent.com/knottttt/codex-dsh-bridge/main/install.ps1" -OutFile $installer
powershell -ExecutionPolicy Bypass -File $installer

The installer:

1. adds or refreshes the Codex marketplace; 2. installs the Codex plugin; 3. installs the Harness companion into the web profile; 4. prints the required restart steps.

After installation:

1. restart the DeepSeek Harness WebUI; 2. start a new Codex task; 3. open Settings → Plugins → Plugin configuration in Harness; 4. confirm that Codex DSH Bridge is enabled.

Manual installation

Run these commands if you prefer to review each action:

codex plugin marketplace add knottttt/codex-dsh-bridge --ref main
codex plugin add codex-dsh-bridge@codex-dsh-bridge
dsh plugin --profile web add github:knottttt/codex-dsh-bridge#main

Restart Harness and start a new Codex task after the commands finish.

Updating

Run the installer again. It refreshes the marketplace, reinstalls the Codex plugin, and updates the Harness package:

powershell -ExecutionPolicy Bypass -File $installer

Uninstalling

Download and run the uninstaller:

$uninstaller = Join-Path $env:TEMP "codex-dsh-bridge-uninstall.ps1"
Invoke-WebRequest "https://raw.githubusercontent.com/knottttt/codex-dsh-bridge/main/uninstall.ps1" -OutFile $uninstaller
powershell -ExecutionPolicy Bypass -File $uninstaller

Saved bridge settings are preserved by default. Pass -RemoveSettings to remove them as well.

Components

ComponentLocationPurpose
Codex plugin.codex-plugin/, .mcp.jsonRegisters the plugin and its local MCP server
MCP bridgescripts/Connects Codex tools to the DSH HTTP RPC API
Collaboration skillskills/Guides Codex when delegating work to DSH
Harness companiondsh-plugin/Adds bridge controls to Harness settings
Marketplace.agents/plugins/marketplace.jsonMakes the Codex plugin installable from GitHub
Installerinstall.ps1Installs and updates both sides of the bridge

Available Codex tools

  • inspect the current DSH host;
  • list and filter DSH sessions;
  • create a session for a project;
  • queue or steer a message;
  • read clean user and final assistant messages;
  • wait for bounded completion;
  • cancel or fork a session;
  • dispatch a task through one convenience tool.

Harness settings

The companion adds a configuration card at:

Settings → Plugins → Plugin configuration → Codex DSH Bridge

The card controls:

  • whether the Codex bridge is enabled;
  • which local Harness endpoint the bridge uses.

Settings are mirrored to:

%DSH_HOME%\codex-dsh-bridge.json

When DSH_HOME is unset, the fallback location is:

%USERPROFILE%\.dsh\codex-dsh-bridge.json

The MCP process reads this file for every tool call, so endpoint and enabled-state changes apply without restarting Codex. The optional DSH_BASE_URL environment variable overrides the saved endpoint, while the Harness enabled switch still takes priority.

Local-only security boundary

The bridge accepts only loopback HTTP origins with an explicit port:

  • 127.0.0.1
  • localhost
  • ::1

HTTPS, LAN addresses, credentials, URL paths, query parameters, and fragments are rejected.

Troubleshooting

Codex tools do not appear

Start a new Codex task. Plugins and MCP tools are loaded when a task starts.

Harness settings card does not appear

Restart the Harness WebUI and verify the installed package:

dsh plugin --profile web list --depth 0

The list should contain codex-dsh-bridge-companion.

A required command is missing

Verify the commands independently:

node --version
codex --version
dsh --version

Install only one side

The installer supports:

.\install.ps1 -SkipDsh
.\install.ps1 -SkipCodex

Development

Run the complete test suite and package check from the repository root:

npm test
npm run pack:check

The suite covers bridge configuration, endpoint validation, Harness settings, revision conflicts, client registration, and distribution metadata.