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.

Scheduled Items — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

@weibaohui/scheduled-items

Scheduled Items

DeepSeek Harness plugin: cron-driven scheduled items. Each item carries a title, a prompt, and a croner expression; executions spawn a fresh agent session in a bound workspace (or the default cwd) and run on schedule or on demand. Includes a full-page management UI.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:weibaohui/scheduled-items#84e6fed91ab4a64b40c55d5400b3b089a91dcf86
READMECompatibilityVersions

Compatibility and provenance

Scheduled Items is published as @weibaohui/scheduled-items and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/31/2026

Versions

0.1.1stable
8/31/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
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

Related plugins

More verified plugins in agents-orchestration.

Headless@deepseek-ai/dsh-headlessThe dsh one-shot bundle: a direct core Agent/Session runner over dsh-base with no Host, HTTP, or browser layerExperimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocolSubagent Claude Code@deepseek-ai/dsh-subagent-claude-codeOne-shot Claude Code subagent provider over the official Agent SDK

README

dsh-plugin-scheduled-items

DeepSeek Harness 插件:cron 定时事项。每个事项包含标题、提示词、croner 表达式,可绑定一个工作区;定时或立即执行时,在一个全新的 agent 会话中提交提示词(绑定工作区时会话跑在该工作区目录下并挂到该工作区分组)。带全屏管理界面(列表 + 增删改查 + 立即执行)。

安装

dsh plugin --profile web add @weibaohui/scheduled-items -w

装完重启 dsh web 即生效。

发版(维护者)

npm version patch            # bump + commit + tag
git push --follow-tags
gh release create vX.Y.Z --generate-notes   # 创建 Release 触发自动发布到 npm

发布由 GitHub Actions 完成(Release published 触发;打 tag 不发布),走 npm Trusted Publishing 免 token。

安装

通过 dsh plugin add(推荐,GitHub 或 npm)

从插件合集仓库的子目录安装(#path: 指向子目录,引号防止 shell 展开):

dsh plugin --profile web add 'github:weibaohui/dsh-plugins#path:scheduled-items' -w

或从本插件独立仓库安装:

dsh plugin --profile web add github:weibaohui/dsh-plugin-scheduled-items -w

或发布到 npm 后:

dsh plugin --profile web add dsh-plugin-scheduled-items -w

dsh plugin 会在 profile 目录转发给 pnpm,并将包调和进 profile 的 bundle 列表(dsh.profile.bundles)。包内 cordis.patch.yml(经 package.json 的 dsh.bundle.patch 声明)随后把插件行插入宿主组合;dsh.client 声明则让 web 外壳加载 client/bundle.js 作为管理界面。

作为组合插件(持久化,手动)

在你的 profile 的宿主组合(cordis.patch.yml)中添加:

- insert:
    - id: scheduled-items
      name: 'dsh-plugin-scheduled-items'

或不安装包、以相对路径指向本仓库。本插件属于 Host 平面:它读取 Host 的 storageDomain、workspaceRegistry、agents、agentDefaultModel、webServer 服务,并注册设置页与全屏管理界面,因此应放在宿主组合中,而不是某个 agent preset 内。

作为动态插件(开发 / 会话级)

code.host 的函数体即 src/index.js 去掉 module.exports 包装;code.client 的函数体即 client/index.js 去掉包装。

功能

  • 事项 CRUD:标题、提示词、cron 表达式、启用开关、绑定工作区。
  • 立即执行 / 定时执行:执行时新建 agent 会话并提交提示词(croner 调度)。
  • 工作区归属:绑定工作区的事项,执行会话 cwd = 工作区路径,且 workspace.attachSession() 挂到该工作区分组。
  • 持久化:走 storage-domain(domain scheduled_items);web 组合可将其路由到 SQLite 后端。
  • 管理界面:侧边栏底部「定时事项」按钮打开全屏管理页;设置页也有同一管理面。

HTTP API

Host 半端在 /scheduled-items/api 注册一个 prefix route:

方法路径body返回
GET/scheduled-items/api—{ items }
POST/scheduled-items/api{ title, prompt, cron, enabled, workspaceId? }{ item }
PATCH/scheduled-items/api{ id, ...patch }{ item }
DELETE/scheduled-items/api{ id }{ removed: true }
POST/scheduled-items/api/run{ id }{ item }

开发

npm install
npm run check    # 语法检查两个半端
npm test         # 离线测试套件
npm run build:client   # 从 client/index.js 构建 client/bundle.js

依赖

运行时只依赖普通 npm 包:croner(调度)、zod(记录 schema)。不依赖任何 @deepseek-ai/dsh-* 包——Host 半端通过 ctx.* 运行时服务访问 harness 能力,因此不受 npm 上 dsh 包发布进度影响。

License

MIT