zby1211/cordis-transfer-plugin ↗★ 1
cordis-transfer-plugin
DSH 持久化插件:动态 Cordis Plugin 导入/导出;导出统一为插件包 zip(manifest + plugins/*.json,可只含一个插件),浏览器下载;导入为本地文件选择上传
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:zby1211/cordis-transfer-plugin说明文档
阅读完整 README ↗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_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
.zipfile, upload it to the Host, and import; imported plugins appear in the Cordis Plugin panel and can be activated there
Model tools
| Tool | Purpose |
|---|---|
cordis_plugin_list | List all dynamic Cordis Plugins in the current session |
cordis_plugin_bundle_export | Export one or more plugins as a zip bundle file |
cordis_plugin_bundle_import | Import plugins from a zip bundle |
Installation
This is a static profile bundle (not an in-memory dynamic plugin). Install the tarball from GitHub Releases:
- Download the latest
cordis-transfer-plugin-.tgzfrom Releases. - Install it into the web profile:
dsh plugin --profile web add /path/to/cordis-transfer-plugin-.tgz - Make sure the profile registers the bundle in
$DSH_HOME/profiles/web/package.json:{ "dsh": { "profile": { "bundles": ["...", "cordis-transfer-plugin"] } }, "dependencies": { "cordis-transfer-plugin": "file:
/cordis-transfer-plugin-.tgz" } }
4. Restart `dsh web` and open **Settings → Plugins → Import / Export**.
## Documentation
- [Code structure and implementation](https://github.com/zby1211/cordis-transfer-plugin/blob/cef751f460c84bff0adc2e2dff5e550f84540ec2/doc/architecture.md)
- [Bundle file format](https://github.com/zby1211/cordis-transfer-plugin/blob/cef751f460c84bff0adc2e2dff5e550f84540ec2/doc/file-format.md)
- [Build and verification](https://github.com/zby1211/cordis-transfer-plugin/blob/cef751f460c84bff0adc2e2dff5e550f84540ec2/doc/development.md)