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.

Provider Passport — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-provider-passport

Provider Passport

Review-first request-dialect preflight for custom DeepSeek Harness providers.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:ArmyWas/dsh-provider-passport#56d2e3018e7ab0da79671be7eab89c8a97077068
READMECompatibilityVersions
A proposed profile applied and verified through DSH 0.1.2-alpha.4

Compatibility and provenance

Provider Passport is published as dsh-provider-passport and currently resolves to version 0.1.0-preview.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/2/2026

Versions

0.1.0-preview.2prerelease
9/2/2026
Show 1 more versionCollapse versions
0.1.0-preview.1prerelease
9/1/2026

Related plugins

Loading related plugins…

Latest
0.1.0-preview.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/5/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 Provider Passport

简体中文

Public preview. Independent community project; not affiliated with or endorsed by DeepSeek.

DSH Provider Passport finds request-dialect differences between a custom OpenAI Chat Completions endpoint and DeepSeek Harness before the first real task fails. It runs a bounded, review-first preflight, proposes only the compatibility fields supported by Harness, verifies the change through the real Harness LLM runtime, and keeps rollback available.

A proposed profile applied and verified through DSH 0.1.2-alpha.4

Why this exists

A generic OpenAI-compatible connectivity check can pass while Harness still fails because the endpoint rejects one of these request-shape choices:

  • developer instead of system
  • max_completion_tokens instead of max_tokens
  • store
  • reasoning_effort
  • stream_options.include_usage

Harness already exposes the corresponding compat settings. The missing product layer is a safe way to discover the minimum settings, preview them, apply them to one model, verify the result through Harness, and recover if verification fails.

Install the preview

Requires Node.js 22.19+ and a DeepSeek Harness Web profile.

npx @deepseek-ai/dsh plugin --profile web add dsh-provider-passport@preview
npx @deepseek-ai/dsh web

If dsh is already available on your PATH, omit npx @deepseek-ai/dsh and use dsh.

Open Settings → Plugins, expand Provider compatibility passport, select a custom OpenAI Chat Completions model, review the request budget, and confirm the preflight.

The route must explicitly set api: openai-completions. When api is omitted, Harness may inherit a different wire protocol for each installed-catalog model; the public model metadata does not expose that resolved protocol, so the plugin excludes the route instead of guessing. Routes using Responses, Anthropic Messages, or another protocol remain out of scope.

To remove it:

npx @deepseek-ai/dsh plugin --profile web remove dsh-provider-passport

Safety and privacy contract

  • Nothing runs in the background. Every preflight requires explicit confirmation.
  • At most 10 fixed requests are sent, with at most 1 output token each and a 12-second per-request timeout.
  • No user files, conversations, prompts, sessions, or tool data are used.
  • Credentials and custom headers stay in memory and never enter reports or logs.
  • The selected model receives only the smallest observed compatibility profile; other models are untouched.
  • A route is eligible only when its editable settings explicitly declare api: openai-completions; ambiguous and other-protocol routes are shown as safely skipped.
  • Proposals are restricted to maxTokensField, supportsDeveloperRole, supportsStore, supportsReasoningEffort, and supportsUsageInStreaming. Catalog-withheld fields are never configured.
  • Cancellation never writes settings. A failed Harness verification automatically restores the previous settings.
  • If Harness rejects a proposed field during its atomic settings validation, the plugin reports the refusal and leaves settings unchanged.
  • Copy redacted report removes endpoint, model id, credentials, headers, request text, response bodies, and model output. Nothing is uploaded automatically.

Read the full privacy design before testing a sensitive enterprise endpoint.

Help validate the real-world need

This preview has deterministic and real-Harness runtime coverage. It is public so people can test their own third-party, enterprise, or self-hosted OpenAI-compatible endpoints without sharing credentials.

  1. Run the preflight.
  2. Click Copy redacted report.
  3. Submit a compatibility report.

Please never post an API key, authorization header, full private endpoint, proprietary prompt, or response body. See the tester guide for the evidence standard.

Questions, product ideas, and unclear results belong in GitHub Discussions.

Current evidence

  • 11 automated unit/contract tests cover redaction, protocol gating, offered-field restrictions, minimal proposals, cancellation, settings isolation, and runtime verification.
  • The packaged plugin completes install → probe → apply → real-runtime verify → rollback on DSH 0.1.1-rc.2 (npm default at release time) and 0.1.2-alpha.4 (latest alpha at release time).
  • A deterministic strict gateway reproduces three request-dialect failures that pass a generic compatibility control but fail under the default Harness request shape.
  • The settings-card flow was manually audited in the real DSH Web UI, including cancellation and rollback.

The full product-discovery evidence is in the opportunity report.

Deliberate scope

This project does not replace:

  • generic API, streaming, tool, or structured-output conformance tools such as CompatCanary;
  • model capability discovery;
  • provider health monitoring;
  • routing, fallback, or proxy adapters.

It owns only the last mile between a custom OpenAI Chat Completions endpoint and the request dialect generated by Harness.

This preview does not infer /v1/responses, Anthropic Messages, or vendor-specific routing from a failed Chat Completions request. A blocked result may mean the route speaks another protocol or depends on provider-managed behavior; the plugin reports that boundary and writes nothing. Multi-protocol discovery remains a separate research question so this plugin does not silently become a general conformance suite.

Development

npm test
npm pack --dry-run

For the isolated real-bundle test, set DSH_CLI_JS to a packaged DSH CLI entry and run:

npm run harness-e2e

See CONTRIBUTING.md and SECURITY.md.

Trademark and license

“DeepSeek Harness” is used only to describe compatibility. The project uses the recommended DSH abbreviation and does not imply official endorsement. See the upstream brand guidelines.

MIT © ArmyWas