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.

Deepcode — DSH Plugin for DeepSeek Harness
← Plugins
D

deepcode

Deepcode

deepcode — an opencode-style full-screen terminal UI for DeepSeek Harness, packaged as a dsh bundle plugin.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:hoobooyoo/deepseek-harness-tui#076782b31e2845f07fd326d6735de9c6b1c53152
READMECompatibilityVersions

Compatibility and provenance

Deepcode is published as deepcode and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.2.0stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.2.0
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
8/31/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in developer-tools.

Find Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Plugindsh-pluginA community plugin marketplace for DeepSeek Harness, built to the official plugin spec — browse, search and install 9000+ human-curated community plugins without leaving the app. · DeepSeek Harness 社区插件市场(遵循官方开发规范):9000+ 人工精选社区插件,每日更新。Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)

README

deepcode

deepcode 是一个 opencode 风格的 DeepSeek Harness 全屏终端 UI,按 harness 的 bundle 插件规范打包(镜像 dsh-headless)。输入 deepcode 即可在终端里与 harness 的 Agent 交互——流式对话、思考过程、工具调用卡片、审批与提问应答,不需要打开浏览器。

它复用 harness 的 dsh 启动器与 dsh-base 核心(Agent / Session / 全部工具 / 审批 / 模型 / preset),本仓库只提供终端 UI 这一层。

安装

需要 Node.js ≥ 20 与 npm。

cd /home/fongye/code/deepcode
npm install      # 安装 @deepseek-ai/dsh + ink + react
npm link         # 注册 `deepcode` 命令

之后任意目录直接运行:

deepcode

首次运行会自动写入 $DSH_HOME/profiles/deepcode/ 的 profile 清单并把本 bundle 链接进解析路径,无需额外 dsh plugin 步骤。

用法

  • 直接输入文字 + 回车发送;
  • Ctrl+C:Agent 运行中 → 打断本轮;空闲 → 退出;
  • /quit 或 /exit 退出。

结构(bundle 插件)

cordis.patch.yml   bundle patch:插入 agent-presets + tui-runner 两行
lib/index.js       runner 插件(导出 { name, inject, apply })
lib/controller.js  Agent 包装:创建/发送/打断 + 会话事件折叠成转录(流式)
lib/app.js         Ink UI:头部 / 消息列表 / 工具卡片 / 输入 / 审批与提问
lib/theme.js       opencode 风格配色
bin/deepcode.js    薄启动器:dsh --profile deepcode

package.json 通过 "dsh": { "bundle": { "patch": "./cordis.patch.yml" } } 声明这是 bundle;dsh --profile deepcode 会组合 @deepseek-ai/dsh-base + 本 bundle。

无头冒烟测试

没有 TTY 时可用环境变量验证「bundle 解析 + Agent 创建 + preset 挂载 + 模型读取」整条链路:

DEEPCODE_SMOKE=1 deepcode
# deepcode: ready (deepseek-official/deepseek-v4-pro)

尚未实现 / 待办

  • 模型切换 UI(ctx.llm.listModels + agentDefaultModel.saveSelection)
  • 历史会话列表与恢复(sessionQuery.listSessions + agents.resume)
  • 计划模式 / 目标 / 子代理等面板的可视化
  • 交互式审批与提问的端到端验证(需真实 TTY)

API 契约参考见 docs/tui-api-reference.md(依据 @deepseek-ai/* 0.1.0-rc.6 源码整理)。