DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@dsh-external/dsh-auto-continue

Auto Continue

自动续写因输出 token 上限而被截断的回复——面向输出上限较小的自托管 Ollama 用户。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:zhou1736948757-cpu/dsh-auto-continue#3e2730dea6f0fa1cbf05c1bf353a1982d3326276
README兼容性版本

兼容性与来源证明

Auto Continue 以 @dsh-external/dsh-auto-continue 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/25

版本

0.1.0stable
2026/8/25

相关插件

正在加载相关插件…

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

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

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

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

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

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness:通过自然语言驱动多智能体团队协作(队长、成员、具有依赖关系的任务、消息传递),并在 Web GUI 中提供树状监视器Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio 及其精选幻灯片模板,作为原生 DeepSeek Harness 对话视图。

README

dsh-auto-continue

Automatically resumes replies that get cut off at the output token limit — built for self-hosted Ollama users. · 回答被输出上限截断时自动续写——为自部署 Ollama 用户打造。

When a model hits the per-request output token cap (max-tokens), DeepSeek Harness ends the turn and shows "Send 'continue' to let the model resume". This plugin watches for exactly that event and sends the continuation automatically — no manual typing, no babysitting long answers.

当模型达到单次请求的输出 token 上限(max-tokens)时,DeepSeek Harness 会结束这一轮并提示"发送'继续'可让模型接着输出"。本插件监听该事件并自动发送续写指令——不用手动打字,不用守着长回答。

🦙 Who is this for? Self-hosted Ollama deployments. Local models on consumer hardware usually run with a deliberately small output cap (4K–8K) to keep the GPU/CPU stable — so long answers get truncated constantly. This plugin is the band-aid that makes truncation painless without raising the cap. It works with any provider, but it is designed for Ollama.

🦙 这个插件是给谁的? 自部署 Ollama 的用户。本地模型跑在消费级硬件上,通常刻意把输出上限设得很小(4K–8K)以保证硬件稳定——于是长回答频繁被截断。本插件就是让截断不再痛苦的"创可贴",不需要调高上限。任何 provider 都能用,但它是为 Ollama 设计的。

Features / 功能

  • 🔁 Automatic continuation — on a max-tokens turn end, queues a "继续" prompt via agent.followup(); the model resumes in a new turn. / 检测到 max-tokens 截断自动队列"继续",模型在新一轮接着输出。
  • 🛡️ Loop protection — at most maxAutoContinues consecutive auto-continues per session (default 5); any normally-finished turn resets the counter. / 同一会话连续截断最多自动继续 5 次(默认),防死循环;正常结束的轮次自动重置计数。
  • 🙅 Never fights your input — skips when you already have queued messages. / 你已有排队消息时自动跳过,不与手动输入打架。
  • 📝 Audit log — every auto-continue is recorded. / 每次自动继续都有日志可查。

Install / 安装

dsh plugin --profile web add github:zhou1736948757-cpu/dsh-auto-continue

Or browse it in the dsh-market plugin market inside Settings. / 或在设置里的 dsh-market 插件市场中浏览安装。

How it works / 工作原理

  • Listens to each agent session's session/event feed for turn/end with reason.kind === "max-tokens".
  • Queues a user message (default text 继续, tagged source.kind = "auto-continue") through agent.followup() after a short delay so the turn fully settles.
  • The truncated output stays in the conversation, so the model continues from where it stopped — exactly like typing "继续" yourself, but automatic.

Configuration / 配置

Add to settings.yaml (or accept the defaults): / 在 settings.yaml 中添加(或直接用默认值):

dsh-auto-continue:
  maxAutoContinues: 5      # max consecutive auto-continues per session (1-20) / 连续截断最多自动继续次数
  continueText: 继续        # the continuation prompt text / 续写指令文本
  delayMs: 300             # delay before sending, lets turn/end settle (ms) / 发送前延迟
  logFile: ''              # log path, default $DSH_HOME/super-injector/dsh-auto-continue.log / 日志路径

Log / 日志

Every auto-continue is appended to $DSH_HOME/super-injector/dsh-auto-continue.log (default). If a reply stops without resuming, the log says whether it hit the cap or failed. / 每次自动继续都会写入 $DSH_HOME/super-injector/dsh-auto-continue.log(默认路径)。如果某次回答没续上,看日志就知道是"达到上限停止"还是"发送失败"。

Notes / 说明

  • This is a safety net, not a fix for the root cause. If your hardware allows a larger cap, raising the model's maxTokens (Settings → Models) and/or lowering reasoningEffort reduces truncation itself. / 这是兜底方案,不是治本。如果硬件允许,调大模型 maxTokens(设置 → 模型)或降低 reasoningEffort 能减少截断本身。
  • With reasoningEffort: max, a truncation may happen with zero visible text (reasoning consumed the budget). The plugin still continues — the model keeps reasoning until it produces output. / 推理强度为 max 时,截断可能发生在正文出现之前(额度被思考耗尽)。插件照常续写,模型会继续思考直到出正文。
  • Each continuation is an ordinary new request — no extra load on your hardware beyond what a manual "继续" would cause. / 每次续写就是一次普通请求,对硬件的压力与你手动发"继续"完全一样。

License / 许可证

BSD-3-Clause