DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-auto-scheduler

Auto Scheduler

DSH 定时自动工作插件:按用户定义的计划启动/停止代理会话,支持低谷/高峰预设和静默模式(DeepSeek Harness dsh-plugin)

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Cheng-xiu/dsh-auto-scheduler#6481f7aa9656925d12c2a0dbbd85f90586c4836f
README兼容性版本

兼容性与来源证明

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

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

版本

0.2.1stable
2026/8/21

相关插件

正在加载相关插件…

最新版
0.2.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 2
周下载
0
最近提交
2026/8/21
查看源码 ↗
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 和进程生命周期管理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

English | 中文

dsh-auto-scheduler

A DeepSeek Harness (DSH) plugin for timed autonomous work: fill in a goal and a time window in the sidebar panel, and DSH automatically creates a session and starts working at the start time, then interrupts the agent and stops the session at the stop time (the session stays in the list for review).

Features

  • Host-side scheduler: timers live inside the dsh web host process, so they fire even when no browser tab is open (the dsh web process itself must be running; missed windows are skipped).
  • Auto start / auto stop: creates a Web GUI session and sends the task at the start time; cancels the active turn and stops the session at the stop time.
  • Two modes:
    • default: the agent may ask the user; every other setting keeps deployment defaults.
    • silent: never asks the user (ask_user_question tool disabled + silent persona), danger-full-access permissions, keeps working until the task is done (still stopped externally at the stop time).
  • ds valley/peak presets: one-click quick fill for Beijing time 12:00-14:00 and 18:00-09:00 (UTC+8).
  • Timezone handling: the panel displays/edits in your system timezone and converts to UTC for storage; valley presets are converted to your local timezone for display.
  • Repeat: once / daily.

Install

Manual (recommended)

dsh plugin --profile web add github:Cheng-xiu/dsh-auto-scheduler#v0.1.4

This is the only command needed; dsh plugin add registers the plugin bundle automatically.

One-click script (Windows)

Download the installer and run it (or clone the repo and run install.cmd):

curl -o install.cmd https://raw.githubusercontent.com/Cheng-xiu/dsh-auto-scheduler/v0.1.4/install.cmd
install.cmd            :: optional: install.cmd <profile>, default profile is web

One-click script (macOS / Linux)

curl -o install.sh https://raw.githubusercontent.com/Cheng-xiu/dsh-auto-scheduler/v0.1.4/install.sh
chmod +x install.sh && ./install.sh   # optional: ./install.sh <profile>

Restart dsh web afterwards. The "Auto Work" (自动工作) entry then appears in the sidebar.

Usage

  1. Open the "Auto Work" sidebar panel.
  2. Fill in the goal, mode (default/silent), start/stop times, and repeat — or click a valley-period preset.
  3. Save. When the time arrives, DSH creates a session and sends the task; the panel shows live status and the next-run countdown.
  4. "Run now" triggers a run immediately (stop time = now + original duration).

Data & security

  • Schedules persist host-side in DSH_HOME/dsh-auto-scheduler.json (default ~/.dsh/dsh-auto-scheduler.json).
  • Panel APIs accept only loopback requests or hosts granted via --trusted-host; anything else gets 403.
  • Silent mode means unattended full-permission execution — use it only for tasks you trust.

How it works

  • The host ticks every 20 seconds and drives sessions through the exact same path the Web GUI uses (apiProxy.sessions.create/prompt/cancel).
  • Silent mode uses the bundled agent preset dsh-auto-scheduler-silent (a fork of the standard preset with a silent persona and the question tool disabled), synced to ~/.dsh/.agent-presets/ at startup.
  • Sessions are titled "[Auto] " so they are easy to find in the session list.

Troubleshooting

  • No sidebar entry after restart: run dsh --profile web --dump-config | findstr auto-scheduler; if the row is missing, re-run the install command. Client panels are injected at boot — a restart is mandatory after install/upgrade.
  • pnpm store or allowBuilds error: this package has no build scripts and no dependencies; follow the pnpm hint printed by dsh plugin add (e.g. add the printed key to allowBuilds in the profile's pnpm-workspace.yaml) and re-run.
  • Missed schedule: the dsh web process must be running at the scheduled time; missed windows are skipped by design.

License

MIT