DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Codex Select — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-codex-select

Codex Select

Codex-style code and file selection for DeepSeek Harness Web: workspace file tree + file viewer; selecting code or a whole file adds it to the message as context automatically

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add dsh-codex-select@0.1.1
READMECompatibilityVersions

Compatibility and provenance

Codex Select is published as dsh-codex-select and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

0.1.1stable
8/17/2026
0.1.0stable
8/17/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
43.1 kB
Files
5
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
44
Last push
8/17/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-codex-select

Codex-style code selection for the DeepSeek Harness Web GUI.

Select code in a workspace file viewer — it is automatically added to the message as a reference chip (no button, no code dumped into the draft text), and at send time the selection is serialized into the prompt as context, exactly like Codex.

Features

  • 文件 / Files conversation view tab: lazy workspace file tree (skips node_modules / .git by default, toggles included) + read-only file viewer (UTF-8 text only, ≤ 1 MiB, binary rejected).
  • Codex-style selection: select code inside the viewer — a chip appears above the composer: 已选中 N 行 · <file>, and a matching reference chip is inserted into the composer automatically.
  • No button, no draft pollution: the code never lands in the visible draft text; the input machine serializes the chip through the plugin codec into a fenced code block with a file-path comment when you send.
  • × clears the chip; selecting different code replaces the previous chip; collapsing the selection keeps the chip (Codex behaviour).

Install

dsh plugin --profile web add dsh-codex-select
dsh web

Restart dsh web after install, then open a session and click the 文件 / Files tab.

Usage

  1. Click the 文件 / Files tab next to the conversation tabs.
  2. Expand the workspace file tree (left) and click a file to view it (right).
  3. Select code in the viewer — a chip 已选中 N 行 · 文件名 appears above the composer, and the selection is attached to the message automatically.
  4. Type your prompt and send — the selected code rides the message as context.
  5. × on the chip removes the selection.

How it works

  • cordis.patch.yml — bundle patch inserting the codex-select host row.
  • lib/index.js — host half: GET /dsh-codex-select/list|read (same-origin routes, same trust model as the core directory picker).
  • lib/client.js — browser half:
    • a conversation.view entry (the Files tab),
    • a conversation.input.dock entry (the chip bar above the composer),
    • an input-trigger source named codex-select whose codec serializes the reference chip at submit time (async fetch-by-path fallback so chips survive reloads).

Security

The host routes share the harness web server's trust model: anyone who can reach the harness can list/read absolute paths on the host account — the same capability the core directory picker already exposes. The viewer is read-only; this plugin never writes or executes files.

License

MIT