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.

Daily Digest — DSH Plugin for DeepSeek Harness
← Plugins

dsh-daily-digest

Daily Digest

DSH Daily Work Summary: automatic logging (tasks/sessions/errors), generate daily/weekly report Markdown on demand

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-daily-digest@0.2.2
READMECompatibilityVersions

Compatibility and provenance

Daily Digest is published as dsh-daily-digest and currently resolves to version 0.2.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
8/27/2026

Versions

0.2.2stable
8/27/2026

Related plugins

Loading related plugins…

Latest
0.2.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
305.1 kB
Files
9
Surface
web
License
MIT
Source
npm
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseWeb 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 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebAutomation@michengai/dsh-automationExecute coding tasks on a schedule in an independent DSH Session, with dual-entry management via a Web settings page and Agent.

README

dsh-daily-digest · DSH 每日工作摘要

自动把「今天和 AI 干了什么」沉淀成日报/周报的 DeepSeek Harness 插件。

  • 自动记账:任务(完成/失败)、会话(标题、轮数、用过的工具、结束状态)、请求错误
  • 按天落盘(profile 的 data 目录,如 ~/.dsh/profiles/web/data/daily-digest/digest.json),重启不丢
  • Web 悬浮卡片:实时统计 + 近 7 天趋势条 + 一键复制日报/周报
  • 全部接口返回 JSON / Markdown,无界面依赖

界面预览

悬浮摘要卡

悬浮卡关闭状态(迷你按钮)

生成的日报

安装

需要 DeepSeek Harness(Node.js 18+),任选一种方式:

# 方式一:npm 安装(推荐,最新发布版)
dsh plugin --profile web add dsh-daily-digest

# 方式二:从 GitHub 安装(最新 main 分支)
dsh plugin --profile web add github:zhaoxuejie/dsh-daily-digest#main

# 方式三:本地开发安装
# dsh plugin --profile web add file:./dsh-daily-digest

dsh web

重启后网页右下角出现「📋 今日摘要」卡片。

更新插件:有新版时重新执行一次 add(或先 remove 再 add),然后重启 web。

接口

接口说明
GET /daily-digest/today今日汇总 JSON(含会话明细 sessions.list)
GET /daily-digest/report?date=YYYY-MM-DD指定日期 Markdown 日报(缺省今天)
GET /daily-digest/weekly?from=&to=周报 Markdown(缺省最近 7 天含今天)
GET /daily-digest/week近 7 天趋势 JSON(卡片柱状图数据源)
GET /daily-digest/range?from=&to=区间聚合 JSON

配置(~/.dsh/settings.yaml,热更新)

dsh-daily-digest:
  enabled: true
  keepDays: 30        # 数据保留天数(1~365)
  recordTools: true   # 隐私开关:是否记录工具名
  recordLabels: true  # 隐私开关:是否记录任务名(计数仍保留)

数据语义

  • 任务:DSH 后台任务系统(jobs)里的 job 结束(成功/失败)时记一笔;普通对话回合不算任务。
  • 会话:新开会话计 startup,打开旧会话续接计 resume(次数,非会话数);会话明细按 session.id 追踪,重启后续接不会重复记账。
  • 标题:优先 session/title 事件,兜底 sessionTitle 服务。

文件结构

dsh-daily-digest/
├── package.json        # bundle 声明(Node + client 双 half)
├── cordis.patch.yml
├── assets/             # README 界面预览截图
│   ├── img1.png
│   ├── img2.png
│   └── img3.png
└── lib/
    ├── index.mjs       # Node half:记账 + 落盘 + 接口
    └── client.js       # Web half:悬浮摘要卡(__ModuleLoader__ 挂载)

开发提示

  • 改 Node half → 重启 web;改 client half → 刷新浏览器。
  • 如果安装形态是拷贝(nodeLinker: hoisted),改代码后需 remove + add 重新安装再重启。

License

MIT