DeepSeek Harness plugin

cordis-transfer-plugin

Import and export dynamic Cordis plugins as zip packages from the DeepSeek Harness web UI.

Jump to install

Source facts

Repository
zby1211/cordis-transfer-plugin
Latest update
Aug 15, 2026
Category
Plugin Markets & Managers
GitHub stars
3
Format
bundle
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/zby1211/cordis-transfer-plugin
Plugin: cordis-transfer-plugin
Author: zby1211

Check the source files

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

File explorer4 files
README.mdSource · read only
README language

cordis-transfer-plugin

A persistent DSH plugin for importing and exporting dynamic Cordis Plugins. It provides two interfaces: model tools (callable by the agent) and a browser Settings panel for download/upload workflows.

> 中文说明见 README.zh-CN.md

Browser panel

Open Settings → Plugins → Import / Export:

  • List the current session's dynamic plugins (multi-select)
  • Export bundle: select one or more plugins (optional manifest name/description)

and download a .dsh-cordis-bundle.zip; selecting a single plugin produces a zip containing only that plugin

  • Import bundle: pick a local .zip file, upload it to the Host, and import;

imported plugins appear in the Cordis Plugin panel and can be activated there

Model tools

ToolPurpose
cordis_plugin_listList all dynamic Cordis Plugins in the current session
cordis_plugin_bundle_exportExport one or more plugins as a zip bundle file
cordis_plugin_bundle_importImport plugins from a zip bundle

Installation

This is a static profile bundle (not an in-memory dynamic plugin).

From npm (recommended):

dsh plugin --profile web add cordis-transfer-plugin

dsh plugin add installs the package and, because this package declares dsh.bundle.patch, automatically appends it to dsh.profile.bundles. Restart dsh web after installation.

For a plain Node project, you can also run:

npm install cordis-transfer-plugin

From a tarball (GitHub Releases or local build):

Get the tarball first:

  • GitHub Releases: download cordis-transfer-plugin-<version>.tgz, or
  • Local build:

``bash npm pack cordis-transfer-plugin ``

Then install it into the web profile:

dsh plugin --profile web add /path/to/cordis-transfer-plugin-<version>.tgz

Restart dsh web after installation.

Documentation

  • [Code structure and implementation](docs/architecture.md)
  • [Bundle file format](docs/file-format.md)
  • [Build and verification](docs/development.md)