DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-goal-planner

Goal Planner

面向 DeepSeek Harness 的目标驱动型每日任务计划器:支持多目标任务数据、每日预览面板,以及与 WeChat 推送流程共享的便于提醒的数据文件。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:caseyyy/dsh-goal-planner#43257044b036e4b7a1a82891ed849c7fcfae0b96
README兼容性版本
设置入口 / Settings entry

兼容性与来源证明

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

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

版本

0.1.0stable
2026/8/25

相关插件

正在加载相关插件…

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

目标驱动的每日任务计划器(DeepSeek Harness 插件):多目标任务数据 + Web 端「目标计划」预览面板,与微信提醒推送链路共享同一份数据文件。

Goal-driven daily task planner for DeepSeek Harness: multi-goal task data plus a daily preview panel in the Web GUI, sharing one data file with the WeChat reminder pipeline.

功能 / Features

  • 🎯 多目标 / Multi-goal:goals[] 支持并行多个目标(每个目标独立截止日期),新目标不覆盖旧目标 / parallel goals with independent deadlines; adding a new goal never overwrites existing ones
  • 📅 每日预览 / Daily preview:设置 → 目标计划 面板,按日期翻页查看每一天的任务 / open Settings → Goal Planner and page through every day's tasks
  • ✅ 一键完成 / One-click done:面板里直接勾选任务完成/恢复,数据即时落盘 / toggle tasks done/todo in the panel; changes persist immediately
  • 🔌 与推送链路共享数据 / Shared data:tasksPath 配置指向现有 tasks.json,即可与 push-daily.mjs + dsh-automation 的每晚微信推送共用同一份数据 / point tasksPath at an existing tasks.json to share it with the nightly WeChat push pipeline (push-daily.mjs + dsh-automation)
  • 🔒 Loopback 安全 / Loopback only:HTTP API 仅允许 127.0.0.1 访问 / the HTTP API accepts loopback requests only

界面预览 / Screenshots

设置侧边栏入口 / Settings entry(设置 → 目标计划 / Settings → Goal Planner):

设置入口 / Settings entry

今日任务面板(目标概览 + 日期导航 + 任务卡片)/ Today's panel (goal overview + date navigation + task cards):

今日面板 / Today's panel

多任务日期(同一天多个任务依次排列,可一键勾选完成)/ A multi-task day (several tasks listed together, one-click done toggle):

多任务日期 / Multi-task day

数据模型 / Data model

{
  "updatedAt": "2026-08-24",
  "goals": [
    { "id": "G1", "title": "给宝宝办齐证件", "deadline": "2026-09-12", "note": "背景备注(可选)" }
  ],
  "tasks": [
    {
      "id": "T01",
      "goalId": "G1",
      "title": "任务标题",
      "detail": "做什么、做到什么程度算完成",
      "time": "具体时间/时段",
      "location": "地点/线上入口",
      "materials": ["要准备的材料"],
      "steps": ["步骤 1"],
      "note": "注意事项",
      "dueDate": "2026-08-25",
      "status": "todo | doing | done"
    }
  ]
}

字段说明 / Field notes:title、goalId、dueDate、status 必填;detail/time/location/materials/steps/note 可选,有值才在面板与推送中显示 / required: title, goalId, dueDate, status; optional fields are shown only when present.

安装 / Install

dsh plugin --profile web add github:caseyyy/dsh-goal-planner
# 本地开发 / local development:
dsh plugin --profile web add link:D:/path/to/dsh-goal-planner -w

重启 dsh web 后,设置页左侧出现 目标计划 入口。

Restart dsh web; the Goal Planner entry then appears in Settings.

指向已有数据文件 / Point at an existing data file

在 profile 的 cordis.patch.yml 中覆盖配置 / override in your profile's cordis.patch.yml:

- id: goal-planner
  config:
    tasksPath: 'D:\\HarnessWorkbench\\goals\\tasks.json'

留空则使用 $DSH_HOME/dsh-goal-planner/tasks.json。 / Leave empty to use $DSH_HOME/dsh-goal-planner/tasks.json.

HTTP API(仅 loopback / loopback only)

方法 Method路径 Path说明 Description
GET/api/goal-planner/state返回 { ok, path, document } / returns the full document
POST/api/goal-planner/save整体保存文档(结构校验)/ replaces the document (validated)
POST/api/goal-planner/toggle{ taskId } 翻转 todo ↔ done / flips a task's todo/done status

与提醒链路配合 / Working with the reminder pipeline

典型组合(作者自用)/ The typical setup the author runs daily:

  • 拆解排期 / Decompose & schedule:对话中告诉 agent「我的目标是 XXX,截止 YYYY-MM-DD」→ agent 搜索步骤/材料并写入本插件的数据文件 / in a chat, tell the agent "my goal is X, due YYYY-MM-DD" — it researches steps and materials and writes them into this plugin's data file
  • 每日微信推送 / Nightly WeChat push:dsh-automation 规则每天 20:30 运行 node push-daily.mjs,把「明天」到期任务经 Server酱 推送到微信 / a dsh-automation rule runs node push-daily.mjs at 20:30 daily and pushes tomorrow's due tasks to WeChat via ServerChan
  • 随时预览 / Preview anytime:本插件面板按天翻看任务 / browse tasks day by day in this plugin's panel

开发 / Development

npm install        # 仅需 esbuild / only esbuild is needed
npm run build      # lib/index.js + lib/client.js
  • Host 端 src/index.js:数据读写 + HTTP 路由(ctx.inject(['webServer']))/ Host half src/index.js: data read/write + HTTP routes via ctx.inject(['webServer'])
  • Client 端 src/client/*:React 面板,external 依赖宿主平台模块表;构建为 CJS 并经 window.__ModuleLoader__.load 自注册 / Client half src/client/*: React panel; externals resolve from the host platform module table; the bundle is built as CJS and self-registers through window.__ModuleLoader__.load

License

GPL-2.0