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.

Cherry Provider Bridge — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
C

dsh-cherry-provider-bridge

Cherry Provider Bridge

Synchronize a Cherry Studio custom provider into DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add github:LiweiDonVee/dsh-cherry-provider-bridge#d42a223819f5682afe51011d6403e2cc9bebb9c0
READMECompatibilityVersions

Compatibility and provenance

Cherry Provider Bridge is published as dsh-cherry-provider-bridge and currently resolves to version 0.1.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/8/2026

Versions

0.1.2stable
9/8/2026
0.1.1stable
9/8/2026

Related plugins

Loading related plugins…

Latest
0.1.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/8/2026
View source ↗
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 models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with the current session provider's today usage on the sidebar entryWhale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editinUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.

README

DSH Cherry Provider Bridge

Reuse a selected Cherry Studio provider in DeepSeek Harness, including its enabled model catalog, without relying on provider GET /models discovery.

Built to interoperate with Cherry Studio by CherryHQ: Cherry owns the source provider/model configuration this bridge consumes. This is an independent community adapter, not an official Cherry Studio plugin or a fork of Cherry Studio. See relationship, provenance and license boundaries.

The bridge reads Cherry's SQLite database read-only and periodically synchronizes the credential and manual model route through DSH services. It adds a missing OpenAI /v1 suffix once and preserves model metadata and compatible reasoning options.

Requirements

  • Node.js 24 and npm.
  • DSH 0.1.2-rc.1, with its credential/settings providers and llm-pi-ai namespace.
  • Cherry Studio database tables user_provider and user_model matching the tested schema. Cherry's database is an internal interface; arbitrary versions are not guaranteed.
  • Windows paths are discovered automatically. On other systems provide databasePath and, if needed, modelRegistryPath explicitly.

Install and configure

git clone https://github.com/LiweiDonVee/dsh-cherry-provider-bridge.git
cd dsh-cherry-provider-bridge
npm ci
npm run check

Edit cordis.patch.yml before enabling: set providerName to the exact enabled provider name in Cherry. Choose a new routeId and credentialRef if you do not want to overwrite an existing DSH route/credential.

providerName: My Provider
routeId: cherry
credentialRef: CHERRY_API_KEY
modelIds: []
databasePath: ''
modelRegistryPath: ''
syncIntervalMs: 5000
npx --yes @deepseek-ai/dsh@0.1.2-rc.1 plugin --profile web add .
npx --yes @deepseek-ai/dsh@0.1.2-rc.1 web

Restart an already running host. Keep the clone if installed as a local link. Select the synchronized provider/model in DSH. Empty modelIds includes all enabled, visible, compatible models; a list restricts the selection.

Default database: %APPDATA%/CherryStudio/Data/cherrystudio.sqlite. Default optional registry: %ProgramFiles%/Cherry Studio/resources/provider-registry/models.json.

Data ownership and recovery

This intentionally copies the selected key into DSH's credential store, not ordinary settings. It does not send the database to any service. DSH subsequently uses the configured endpoint for model calls. Synchronization runs every five seconds, skips unchanged values and retries temporary lock/namespace failures.

To stop synchronization, remove the plugin and restart DSH:

npx --yes @deepseek-ai/dsh@0.1.2-rc.1 plugin --profile web remove dsh-cherry-provider-bridge

The synchronized route and credential remain. Remove them through DSH if desired; uninstalling does not revoke a provider key.

Verification

npm run check runs TypeScript checks, builds the distributable, and runs 12 tests using temporary SQLite fixtures plus the actual DSH settings implementation. No real key or Cherry database is included. Paid-provider requests and every Cherry release are not certified.

Independent community plugin, not affiliated with DeepSeek AI or Cherry Studio. MIT; LICENSE.