voyager
Nagi-ovo
Enhancement suite for Gemini, AI Studio, Claude & ChatGPT — plus a prompt manager for any websites, DeepSeek Harness included. / 面向 Gemini、AI Studio、Claude 与 ChatGPT 的增强套件;其中的提示词管理器可用于任意网站,如 DeepSeek Harness。
PROJECT TOPICS
INSTALL REFERENCE
dsh plugin --profile web add github:caseyyy/dsh-goal-planner
该命令指向仓库当前默认分支;尚无绑定当前 commit 的完整验证结果。
PROJECT README
目标驱动的每日任务计划器(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.
goals[] 支持并行多个目标(每个目标独立截止日期),新目标不覆盖旧目标 / parallel goals with independent deadlines; adding a new goal never overwrites existing onestasksPath 配置指向现有 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)设置侧边栏入口 / Settings entry(设置 → 目标计划 / Settings → Goal Planner):

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

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

{
"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.
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.
在 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.
| 方法 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 |
典型组合(作者自用)/ The typical setup the author runs daily:
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 ServerChannpm install # 仅需 esbuild / only esbuild is needed
npm run build # lib/index.js + lib/client.js
src/index.js:数据读写 + HTTP 路由(ctx.inject(['webServer']))/ Host half src/index.js: data read/write + HTTP routes via ctx.inject(['webServer'])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__.loadCLASSIFICATION EVIDENCE
系统优先读取 GitHub Topics,再与站内分类词典和词根规则比对。当前命中: wechat-reminder。