DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Anyrouter — DeepSeek Harness 插件(DSH Plugin)
← Plugins
A

dsh-anyrouter

Anyrouter

用于 DeepSeek Harness 的专用 AnyRouter Claude Code 和 Codex Responses 适配器

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:shaomingbo/dsh-anyrouter#b383a4570ba01f30269add6d73b22d295bbdb505
README兼容性版本

兼容性与来源证明

Anyrouter 以 dsh-anyrouter 发布,当前版本为 0.3.3。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/9/12

版本

0.3.3stable
2026/9/12
0.3.2stable
2026/9/11
0.3.1stable
2026/9/1
查看其余 3 个版本收起版本

README

dsh-anyrouter

A dedicated DeepSeek Harness provider bundle for Any Router — Claude via a Claude Code compatible transport, GPT/Codex via the Responses API.

Install (fixed release tag, no arguments)

npx --yes github:shaomingbo/dsh-anyrouter#v0.3.3

The installer defaults to the web profile, pins the exact release tag, edits only dependencies.dsh-anyrouter and dsh.profile.bundles in the profile package.json, runs pnpm install --ignore-scripts there, and never stops or restarts DSH. Restart DSH manually afterwards and hard-refresh the Web page.

Other commands:

npx --yes github:shaomingbo/dsh-anyrouter#v0.3.3 status                    # is it installed?
npx --yes github:shaomingbo/dsh-anyrouter#v0.3.3 uninstall                 # idempotent removal
npx --yes github:shaomingbo/dsh-anyrouter#v0.3.3 --profile headless        # another profile
DSH_ANYROUTER_SOURCE=link:/path/to/checkout npx --yes github:shaomingbo/dsh-anyrouter#v0.3.3   # local source override

Compatibility

DSH versionStatus
0.1.5-rc.1 CLI with Web/LLM 0.1.5-rc.1Verified (boot + model catalog + settings section). v0.3.3 supplies the profile's modelErrors map that @deepseek-ai/dsh-llm-pi-ai@0.1.5-rc.1 dereferences before every request and catalog projection; v0.3.2 fails the whole anyrouter group there with Cannot read properties of undefined (reading 'get').
0.1.2-alpha.3 CLI with Web/Settings 0.1.2-rc.1Verified (boot + settings section). v0.3.2 probes settings APIs instead of importing removed deepEqualJson / installSettingsSection / settingsNamespace.
0.1.2-alpha.3 homogeneous (settings 0.1.1-rc.2)Verified (legacy settings helpers still work)
0.1.1-rc.2 and earlierUnsupported: those Clients carried credentials and model discovery on connection.api, which 0.1.2-alpha.3 removed in favour of ctx.remote.credentials / ctx.remote.llm. Use v0.2.3 instead
Anything elseUnknown, not verified

The client plugin probes remote.credentials / remote.llm at activation and fails loudly when either is missing, naming the supported range — it never degrades into a silently blank panel.

Features

  • Key-gated route. The anyrouter provider route is registered only while an API key exists (credentials reference ANYROUTER_API_KEY, or the launch environment when no credentials service is installed). Without a key the provider goes dormant — the model selector drops the whole group — and it returns without a restart once the key is stored again.
  • Full model profiles, not bare ids. Synchronizing a model persists its reasoning parameters — selectable efforts, default effort, adaptive-thinking flag — plus context/output capacities. The model selector and the reasoning selector therefore work for every synchronized model, and every value is user-editable in the picker.
  • Choose which models to include. 同步模型 lists every Claude/GPT model the relay advertises as a checkbox picker; adopt a subset and edit each row's reasoning profile before saving. gpt-5-codex starts unchecked because the relay's Responses endpoint rejects it (404 当前 API 不支持所选模型, verified 2026-08-31).
  • Claude Code request identity. Claude models ride a Claude Code 2.1.239-compatible Anthropic Messages transport: the beta header/query set, Agent SDK identity blocks, session metadata shape, adaptive thinking, context management, and canonical Claude Code tool names.
  • Codex Responses, not Chat Completions. GPT models ride POST /v1/responses with the Codex CLI request shape (store: false, include reasoning.encrypted_content, codex user agent).
  • Reasoning efforts flow through the normal DSH reasoning selector. The API key is stored under the dedicated credential reference; the browser can write or replace it but never reads it back.

Configuration

Persisted under the llm-anyrouter settings namespace:

llm-anyrouter:
  baseURL: https://anyrouter.top
  models:
    - id: claude-opus-5
      protocol: claude-code
      contextWindow: 1000000
      maxTokens: 128000
      reasoning:
        efforts: [off, minimal, low, medium, high, xhigh, max]
        defaultEffort: high
        adaptive: true          # Claude only: adaptive effort instead of a thinking budget
    - id: gpt-5.6-sol
      protocol: codex-responses
      reasoning:
        efforts: [off, low, medium, high]
        defaultEffort: high

An absent reasoning block falls back to the build-time reference profile generated from pi-ai's catalog (src/model-profiles.generated.ts); disabled: true offers the model without a reasoning control. The API key itself lives in the credentials service (or the launch environment), never in this section.

The model list is advisory

A synchronized model can still answer 429/500 when the relay has no healthy upstream channel or is at capacity — synchronization deliberately makes no paid probe calls per model. Errors name the model and status; retry later.

Development

pnpm install
pnpm run typecheck
pnpm run test        # vitest + node:test installer suites
pnpm run build       # host bundle + browser client
pnpm run check       # everything above + install.js syntax check
node scripts/generate-model-profiles.mjs   # regenerate after a pi-ai bump; commit the diff

Local development against a running profile:

DSH_ANYROUTER_SOURCE=link:/absolute/path/to/checkout npx --yes github:shaomingbo/dsh-anyrouter#v0.3.3

Live endpoint verification is environment-gated and makes real requests only when ANYROUTER_LIVE_KEY is exported:

ANYROUTER_LIVE_KEY=sk-… pnpm vitest run tests/live.spec.ts

Manual fallback (not the preferred path): add the dependency and the dsh.profile.bundles entry to the profile package.json yourself, then run pnpm install --ignore-scripts in the profile directory.

Compatibility

Targets DeepSeek Harness 0.1.1-rc.2 and pi-ai 0.82.1. If a legacy generic llm-pi-ai.providers profile still points at this relay, remove it — the dedicated route owns the request identity.

License

MIT

0.2.3stable
2026/9/1
0.2.2stable
2026/9/1
0.2.1stable
2026/8/31

相关插件

继续浏览 models-usage 分类下经过校验的插件。

Usage Stats@ychris12138/dsh-usage-statsdsh Web GUI 的令牌使用热力图、提供商余额和订阅配额Codex Connectdsh-codex-connect用于 DeepSeek Harness 的 ChatGPT OAuth 和 Codex 模型。Damage Pulsedsh-damage-pulseDeepSeek Harness 余额监控器,配有鲸鱼女孩伙伴,并为每次令牌消耗提供感知缓存的伤害动画。Agy Linkdsh-agy-link适用于 DeepSeek Harness 的 Google Antigravity(agy CLI)模型——将 Gemini/Claude/GPT-OSS 订阅流式接入 DSH,并支持思考过程、工具活动、令牌使用量以及在 GUI 中通过 Google OAuth 登录。
最新版
0.3.3
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/12
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录