DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Cron Tasks — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
C

@dsh-external/dsh-cron-tasks

Cron Tasks

DeepSeek Harness 的计划任务:在“新会话”下显示侧边栏入口,插件设置和运行历史记录不显示在工作区列表中。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Whale-Zhang/dsh-cron-tasks#41a382c592b2f59ad9bc6bb489d2c66211994139
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0stable
2026/8/24

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。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 中提供树状监视器

README

dsh-cron-tasks

English · 中文

A DeepSeek Harness (dsh) plugin for scheduled tasks. Sidebar entry under New Session, plugin settings, isolated run history, and model-facing cron_* tools.

中文

到点后 新开一条会话 跑事先写好的提示词,记进侧栏「定时任务」历史。这类会话不会淹没日常工作区列表。

这不是官方同会话 reminder(@deepseek-ai/dsh-schedule),也不是系统 crontab。调度器住在 DSH Host 里:Host 没在跑就不会触发。

安装

需要已安装 DeepSeek Harness。一条命令装进网页端和桌面端:

dsh plugin --profile web add github:Whale-Zhang/dsh-cron-tasks
dsh plugin --profile desktop add github:Whale-Zhang/dsh-cron-tasks

装完后重启对应 profile(dsh web 或 Desktop)。用下面命令应能看到 dsh-cron-tasks:

dsh --profile web --dump-config

卸载

dsh plugin --profile web remove @dsh-external/dsh-cron-tasks
dsh plugin --profile desktop remove @dsh-external/dsh-cron-tasks

做什么

  • 左侧 「新会话」正下方 的 「定时任务」 入口:创建、暂停/恢复、删除、立即运行、搜索
  • 设置 → 插件 → 插件配置 里的调度策略(启用、默认时区、历史保留、重叠/漏跑)
  • 每次触发新开 root Session;点历史记录打开原生对话,可以继续聊
  • 每个任务可指定 模型(钉死后不跟着聊天模型变,额度可预期)
  • 工作目录可下拉已有工作区,或自定义路径
  • 也可在对话里对 AI 说「帮我建一个定时任务」(skill scheduled-tasks + cron_create)

日程

  • 一次性 at,或循环 5 字段 cron,IANA 时区(默认 Asia/Shanghai)
  • 「一分钟后」用 after_minutes,不要叠 at / hour / expr
  • 重叠:同一任务已有进行中的运行则跳过
  • 漏跑:Host 宕机期间错过的节拍 不补跑

开发

node --test test/*.test.js

本地 file: 安装(开发用,不要用 link:):

dsh plugin --profile web add file:$HOME/.dsh/plugins/dsh-cron-tasks

产品契约见 docs/PRD.md。实现经验见 docs/NOTES.md。


English

At the scheduled time, Harness opens a fresh root session, runs a self-contained prompt, and records the run in the Scheduled tasks sidebar. Those sessions stay out of the ordinary workspace list.

This is not the official same-chat reminder (@deepseek-ai/dsh-schedule) and not OS crontab. The scheduler lives in the DSH Host process; nothing fires while Host is down.

Install

Requires DeepSeek Harness.

dsh plugin --profile web add github:Whale-Zhang/dsh-cron-tasks
dsh plugin --profile desktop add github:Whale-Zhang/dsh-cron-tasks

Restart the profile after installing. dsh --profile web --dump-config should list dsh-cron-tasks.

Uninstall

dsh plugin --profile web remove @dsh-external/dsh-cron-tasks
dsh plugin --profile desktop remove @dsh-external/dsh-cron-tasks

What it does

  • Sidebar entry under New Session: create, pause/resume, delete, run now, search
  • Scheduler policy in Settings → Plugins → Plugin configuration
  • Each fire is a new root session; open a history row to continue in the native chat
  • Each job can pin a model so quota does not follow the chat selector
  • Working directory: existing workspace or a custom path
  • Ask the agent to create a job (scheduled-tasks skill + cron_create)

Schedule

  • One-shot at or 5-field cron, IANA time zone (default Asia/Shanghai)
  • “In N minutes” → after_minutes
  • Overlap: skip if the same job is already running
  • Misfire: missed beats while Host was down are not replayed

License

MIT