DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
T

dsh-tui-cron

Tui Cron

dsh-TUI 的 Cron 计划:/cron 保存 5 字段 Cron 条目,将提示作为后续用户消息发送到当前对话中。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:FUSU123fusu/dsh-tui-cron#36a2adbb97d26e969d9bfea1594f527b02973cca
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0stable
2026/8/28

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题
Tui Cron — DeepSeek Harness 插件(DSH Plugin)

相关插件

继续浏览 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 包。Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航Automation@michengai/dsh-automation在独立 DSH Session 中按计划执行编码任务,支持 Web 设置页与 Agent 双入口管理。

README

dsh-tui-cron

适用于 dsh-TUI(dshtui.com)的社区插件。

dsh-TUI 的定时任务插件:/cron 保存一条标准 5 段 cron 计划和提示词,到点把提示词作为一条后续用户消息(follow-up user message)发进当前会话——正在跑的轮次不会被打断,消息排进队列成为下一轮。

English below.

用法

/cron                                        " 打开任务面板(非 TUI 宿主退化为文本列表)
/cron add <分> <时> <日> <月> <周> <提示词>    " 添加,返回 id 和下次触发时间
/cron rm <id>                                " 删除(精确 id 或唯一前缀)
/cron on <id>                                " 启用
/cron off <id>                               " 停用

面板按键:↑/↓ 选择 · 空格 启用/停用 · d 删除(3 秒内按两次确认)· Esc 退出。

示例:

/cron add 0 9 * * 1-5 提醒我整理今天的站会要点
/cron add */30 9-18 * * * 检查一下后台任务面板有没有失败的 job

cron 语法速查

五段:分 时 日 月 周。每段支持 *、*/n、a、a-b、a-b/n、逗号列表;周 0-7(0 和 7 都是周日)。日/周同时为限制值时是 或 语义(Vixie cron 惯例):任一匹配即触发。

*/15 * * * *     " 每 15 分钟
0 9 * * 1-5      " 工作日 9:00
0 0 1,15 * *     " 每月 1 号和 15 号 0:00
0 0 13 * 5       " 每个周五,以及每月 13 号(或语义)

重要限制:进程生命周期

调度器只活在当前 dsh profile 进程里:启动时从此刻计算每条任务的下次触发时间,TUI 不在线期间错过的时点不会补跑。要任务能触发,请保持 dsh-TUI 开着。如果到点时还没有任何顶层会话(agent)创建过,本次触发跳过并写 warn 日志。

数据存在 ~/.dsh-tui/cron.json(纯 JSON 数组,可手改,格式:id / cron / prompt / enabled / createdAt / lastFiredAt)。

安装

暂未发布到 npm,从源码打包安装:

git clone https://github.com/FUSU123fusu/dsh-tui-cron.git
cd dsh-tui-cron
npm pack
dsh plugin --profile <你的profile> add file:dsh-tui-cron-0.1.0.tgz

开发

node --test    " 单元测试(cron 解析/nextFire 预言机对照、存储、调度器、manifest)

English

Cron schedules for dsh-TUI: /cron saves a standard 5-field cron expression plus a prompt, and when a slot comes due the prompt is injected into the live conversation as a follow-up user message (agent.followup) — a running turn is never interrupted, the message queues as the next turn.

  • Parser: *, */n, a, a-b, a-b/n, comma lists; dow 0-7 (0 and 7 = Sunday); Vixie dom/dow OR-semantics. nextFire fast-forwards field by field with a ~4-year cap.
  • Process-lifetime limitation: the scheduler lives only while this dsh profile process runs. Next fires are computed from now at startup — slots missed while the TUI was offline are never caught up.
  • Storage: ~/.dsh-tui/cron.json, best-effort plain JSON.
  • Panel keys: ↑/↓ select · Space toggle · d delete (double-press confirm) · Esc quit. Degrades to a text list on hosts without the scene seam.

MIT