← 返回列表
⚠ 装前注意
目标驱动的每日任务计划器DeepSeek Harness 插件:多目标任务数据 + Web…
基本兼容但装前注意:未发布到 npm registry,仅可从源码安装 · 最近上游提交 2026/8/25 · 已提供中文文档
目标驱动的每日任务计划器:多目标任务数据 + Web 每日预览面板,与微信提醒推送共享数据 · Goal-driven daily task planner for DSH: multi-goal tasks + daily preview panel, one data file with the WeChat reminder pipeline.
综合分
29
GitHub 分
29
用户评分
—
★ Stars
2
周下载量
—
兼容 / 相关生态插件(非 dsh 原生,请按其对应运行时安装)
git clone https://github.com/caseyyy/dsh-goal-planner.git信任档位:已验证本站已于 0 天前真实安装成功
- 是什么
- 生态插件(可安装,未声明 dsh 能力)
- 装得上吗
- 本站已真实安装成功(非静态推断)
- 安全吗
- 本站尚未对该插件做风险分级(暂未覆盖,不等同于无风险)
- 还在维护吗
- 更新放缓:最近一次提交在 31 天前
档位由下列信号合成:本站实装验证(真实安装,当前最高到 L4)· 验证所用 dsh 版本 · 静态安装检查 · 风险分级 · 仓库维护状态。下方各区块是它的证据明细。 验证判据与等级说明 →
🟢实装验证通过· 2026/9/25
由本站实装验证器在真实 dsh 环境安装成功,非静态推断。
数据截至 2026/9/19(元数据每日更新 · 实装验证按队列轮转,单条结论的验证时间见上方)
安装兼容性检查⚠ 装前注意
以下结论由程序自动检查 npm 包、engines 声明与入口文件得出,未做人工实机验证——能装不等于用着没问题。
✗npm 包dsh-goal-planner(未发布到 npm,仅可源码安装)
✓Node 引擎未声明 engines.node
✓dsh CLI 依赖未声明 dsh 版本约束
✓入口文件main/exports/bin 已声明
未发布到 npm registry,仅可从源码安装
验证方式:npm registry 存在性 + package.json 静态校验 · 最后验证 2026/9/23 11:37:55
依赖的 DSH / Cordis 模块
@deepseek-ai/cordis用户评分
还没有人投票,来当第一个
订阅周报,不错过优质插件更新
每周一封 · 高评分插件 + 新用户活动
README
由 DeepSeek 最新模型翻译生成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 后,设置页左侧出现 目标计划 入口。
重启 dsh web;随后 Goal Planner 条目会出现在设置中。
指向已有数据文件 / 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