DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-anthropic-membership

Anthropic Membership

DeepSeek Harness 插件:使用 Claude Pro/Max 登录(无需 Anthropic API 密钥)。此外,将 Anthropic 请求图像限制为 2000px,并精简 /compact,以便 1M 上下文仍可进行摘要。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:antonio-mastropaolo/dsh-anthropic-membership#707b9f968a355367b370e2ab1b41c369b60d1288
README兼容性版本

兼容性与来源证明

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

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

版本

1.0.0stable
2026/9/15

相关插件

正在加载相关插件…

最新版
1.0.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/16
查看源码 ↗
README Badge

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

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

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

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

相关插件

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

Pocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。Auto Reviewdsh-auto-review针对 DeepSeek Harness 审批请求的第二模型 AI 自动审查:只读审查子代理在审批应答链上决定允许或拒绝,并采用故障关闭回退机制和完整的会话日志审计。Codex Subscriptiondsh-codex-subscription通过 OAuth 在 DeepSeek Harness 中使用 ChatGPT 和 Codex 订阅,支持配额管理、安全重置、网页搜索、图像和快速模式

README

dsh-anthropic-membership

DeepSeek Harness plugin: Sign in with Claude Pro/Max. Uses the same Anthropic membership OAuth grant Claude Code uses (isSubscription: true). No Anthropic API key.

It also unblocks two Anthropic-specific lockups that otherwise freeze a long session:

  1. Many-image 2000px cap — DSH can store request images with a long edge of 2048px. Anthropic rejects many-image requests above 2000px, and retries keep sending the same history. This plugin downscales request images to a 2000px long edge.
  2. /compact over a 1M window — when the live prompt is already over the model cap, DSH's summarizer replays that same prompt and fails with Compaction could not produce a useful summary. This plugin slims compaction calls (drop images and reasoning, truncate huge tool text) so /compact can land.

Install

Requires the dsh CLI.

dsh plugin --profile web add github:antonio-mastropaolo/dsh-anthropic-membership

From a local checkout:

git clone https://github.com/antonio-mastropaolo/dsh-anthropic-membership.git
dsh plugin --profile web add file:./dsh-anthropic-membership

Restart dsh web. Open Settings → Models. On the Anthropic card: Sign in with Claude Pro/Max. Then pick an anthropic / claude-* model.

If the UI is down:

node login.mjs
node logout.mjs

What it writes

  • Settings: llm-pi-ai.providers.anthropic (no apiKeyEnv) in ~/.dsh/settings.yaml, or $DSH_SETTINGS if set. If you launch DSH from Ollama and ~/.ollama/launch/dsh/settings.yaml exists, that file is used instead.
  • Grant: llm-pi-ai/anthropic in ~/.dsh/.credentials.yaml (mode 0600). Never logged.

Control API

Loopback only, 127.0.0.1:8185 (override with DSH_MEMBERSHIP_PORT; the Settings button expects 8185).

MethodPathNotes
GET/healthz{ ok: true }
GET/status{ signedIn, expiresAt, imageCap, compactionSlim } — Origin must be the DSH UI if Origin is sent
POST/login /logoutRequires Origin: http://127.0.0.1:3080 (or localhost) and header x-dsh-membership: 1

CORS does not reflect arbitrary Origin. A missing CSRF header is 403. /login is 409 if a login is already in flight.

Tests

npm test

Needs a DSH install on disk so sharp resolves (or set DSH_NODE_MODULES to that node_modules directory).

License

MIT