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.

Codebuddy — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
C

@lbryany/dsh-codebuddy

Codebuddy

CodeBuddy OAuth, dynamic models, and reasoning controls for DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Lbryany/dsh-codebuddy#60bfe09a73793db531a23df4d57c1faf21b63a81
READMECompatibilityVersions

Compatibility and provenance

Codebuddy is published as @lbryany/dsh-codebuddy and currently resolves to version 0.1.3. 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/20/2026

Versions

0.1.3stable
9/20/2026

Related plugins

Loading related plugins…

Latest
0.1.3
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/20/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 security-access.

Doctor@linxin666/dsh-doctorTransactional rescue mode for DSH profiles with a supervised launcher, isolated recovery capsule, deterministic repairs, health monitoring, and a local Web recovery consoleMobiledsh-mobileDeepSeek Harness mobile adaptation and secure access plugin, supporting LAN, remote connections, Android App, and mobile browsers.DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Auto Reviewdsh-auto-reviewSecond-model AI auto-review for DeepSeek Harness approval requests: a read-only reviewer subagent decides allow/deny on the approval answerer chain, with fail-closed fallback and full session-log audit.

README

dsh-codebuddy

DeepSeek Harness 的 CodeBuddy 插件:提供 OAuth 登录、账号动态模型目录、流式请求以及推理等级选择。

功能

  • /codebuddy-login [site] 登录国内版、国际版或自定义 CodeBuddy 站点。
  • 在 dsh 模型选择器中显示独立的 CodeBuddy 分类。
  • 登录后动态加载当前账号可用的模型。
  • 支持 Off / Minimal / Low / Medium / High / Xhigh / Max 推理等级。
  • OAuth 凭据通过 dsh Credential Store 持久化,重启后自动恢复模型目录。
  • 提供 /codebuddy-status 和 /codebuddy-logout。

前置要求

  • DeepSeek Harness 0.1.6-alpha.2
  • Node.js 22.19+ 或 24+

从 GitHub 安装

将插件安装到实际运行 Web 应用的同一个 profile:

dsh plugin --profile web add github:Lbryany/dsh-codebuddy
dsh web

如果 Web 应用使用自定义 profile,请将 web 换成该 profile 名称,并使用 dsh --profile <name> 启动。

DSH 0.1.6 的 pnpm 安全策略

@earendil-works/pi-ai 的传递依赖包含两个安装脚本,但 CodeBuddy 的 OpenAI 兼容路径不需要运行它们。若安装时出现 ERR_PNPM_IGNORED_BUILDS,请在 $DSH_HOME/profiles/web/pnpm-workspace.yaml 中把 DSH 自动生成的占位值改为:

allowBuilds:
  '@google/genai': false
  protobufjs: false

如果文件里已有 allowBuilds,请合并这两项而不是重复该键。首次失败的安装可能已经写入依赖但尚未激活 bundle;修改后先移除再重新安装:

dsh plugin --profile web remove @lbryany/dsh-codebuddy
dsh plugin --profile web add github:Lbryany/dsh-codebuddy

在 dsh 输入框执行:

/codebuddy-login cn

站点参数:

  • cn / china:https://copilot.tencent.com
  • global / intl 或留空:https://www.codebuddy.ai
  • 也可以传入完整的 http(s) 站点 URL

命令会直接显示授权 URL;请点击该 URL(或复制到本地浏览器)完成授权。这个流程不依赖服务器上的 Chrome,因此也适用于无头或远程环境。授权成功后,模型选择器会出现 CodeBuddy 分类、当前账号的模型列表和可选推理等级。

从源码构建安装

git clone https://github.com/Lbryany/dsh-codebuddy.git
cd dsh-codebuddy
npm ci
npm run check
npm pack --ignore-scripts
dsh plugin --profile web add ./lbryany-dsh-codebuddy-0.1.3.tgz
dsh web

更新与卸载

重新安装最新 GitHub 版本:

dsh plugin --profile web add github:Lbryany/dsh-codebuddy

卸载:

dsh plugin --profile web remove @lbryany/dsh-codebuddy

命令

  • /codebuddy-login [cn|global|site URL]
  • /codebuddy-status
  • /codebuddy-logout

OAuth 凭据存储在 dsh 凭据引用 CODEBUDDY_OAUTH 中。插件不会把 access token 或 refresh token 写入日志。

开发

npm ci
npm run typecheck
npm test
npm run build

lib/ 会提交到仓库,以便 dsh 可以直接通过 GitHub 安装;CI 会验证提交的 bundle 与源码构建结果一致。

License

MIT