DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-period-report

Period Report

DeepSeek Harness 的自定义间隔会话报告:针对任意日期范围生成由 AI 撰写的每日/每周/每月摘要,并支持每 N 天安排提醒,生成报告并弹出系统通知(macOS Notification Center / Linux notify-send)。

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-period-report@0.2.1
README兼容性版本

兼容性与来源证明

Period Report 以 dsh-period-report 发布,当前版本为 0.2.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.2.1stable
2026/8/16
0.2.0stable
2026/8/16

相关插件

正在加载相关插件…

最新版
0.2.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
70.5 kB
文件数
7
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 1
周下载
62
最近提交
2026/8/16
查看源码 ↗项目主页 ↗
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 和进程生命周期管理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 中提供树状监视器Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio 及其精选幻灯片模板,作为原生 DeepSeek Harness 对话视图。

README

dsh-period-report

English | 中文

Free-interval session reports for DeepSeek Harness: generate AI-narrated work reports (daily / weekly / monthly / any custom date range) from your session corpus, and schedule periodic reminders ("every N days at HH:MM, starting from an anchor date") that generate the report and pop a system notification.

Features

  • Web UI (v0.2.0) — a Session Report settings page (report generator + reminder configuration) and bottom-right reminder toasts with a large full-report reading window.

  • Any date range — pick a start and end date; the report covers exactly that window (a single day, 2 days, 7 days, a whole month, whatever you need).

  • AI narrative digest — the deployment's default model writes a natural-language summary (Today at a glance / Highlights / Review / Suggestions) that reads like a human-written daily report. Falls back to a template highlight list when AI is disabled or unavailable.

  • Full statistics — active/new sessions, user & assistant messages, tool calls, turns, steps, token usage (input/output/cache read/write/reasoning), turn results, top tools.

  • Per-session details — title, id, working directory, active window, message/tool/turn counts, first request.

  • Periodic reminders — free period length: intervalDays: 1 = daily, 7 = weekly, 2 = every other day… anchored at anchorDate, fired at hour:minute, once per period. range: previous reports the completed previous period (e.g. 09:00 digest of yesterday); range: current reports the period in progress.

  • System notifications — macOS Notification Center banner via osascript, Linux via notify-send. Full reports are also saved to ~/.dsh/dsh-period-report/reports/ so nothing is lost when the GUI is closed.

  • Bilingual — reports in Chinese (zh) or English (en).

  • Persistent config — ~/.dsh/dsh-period-report.json (mode 0600).

Install

dsh plugin --profile web add github:zhengjy01/dsh-period-report

Local development:

dsh plugin --profile web add link:/path/to/dsh-period-report

Tools

report_generate

Generate a report for an arbitrary date range.

ParameterTypeDescription
startDatestring (required)Start date, YYYY-MM-DD (inclusive)
endDatestring (required)End date, YYYY-MM-DD (inclusive)
includeSubagentsbooleanInclude subagent sessions (default false)
withUsagebooleanInclude token usage stats (default true; disable for speed)
languagestringzh or en (default zh)
narratebooleanAI narrative digest (default true; disable for a fast template digest)

Returns the full Markdown report.

report_config

View or update the reminder configuration (persisted in ~/.dsh/dsh-period-report.json).

ParameterTypeDescription
enabledbooleanEnable/disable the scheduled reminder
anchorDatestringAnchor date YYYY-MM-DD; periods count from this day
intervalDaysnumberRemind every N days (1–90; 7 = weekly)
hour / minutenumberReminder time of day
rangestringprevious (report the last period, default) or current
languagestringReport language zh / en
narratebooleanAI narrative toggle

Calling it with no arguments returns the current configuration.

Example

“Set a reminder every 2 days at 09:00 starting from 2026-06-01, in Chinese.”

→ report_config with { "enabled": true, "anchorDate": "2026-06-01", "intervalDays": 2, "hour": 9, "minute": 0, "range": "previous" }

Reminders fire on 06-01, 06-03, 06-05 … at 09:00, each reporting the previous 2-day period; a system notification shows the summary and the report file path.

License

MIT