← 返回列表
未验证
日报/周报自动生成技能DeepSeek Harness| Daily/Weekly Work Briefing…
尚未跑自动兼容性验证,可查看页面内的依赖与入口分析。 · 最近上游提交 2026/9/1 · 已提供中文文档
综合分
28
GitHub 分
28
用户评分
—
★ Stars
0
周下载量
—
安装插件(需先安装 dsh CLI 引擎:npm install -g @deepseek-ai/dsh)
dsh plugin --profile web add HiccupGeng/dsh-briefing-skill该插件未发布到 npm,走 GitHub 源安装(pnpm 若拦截 prepare 脚本,按其提示在 pnpm-workspace.yaml 的 allowBuilds 中放行后重跑)
信任档位:仅索引本站尚未对其实装验证,仅收录元数据
- 是什么
- dsh 原生插件 · other
- 装得上吗
- 本站尚未做安装检查
- 安全吗
- 本站尚未对该插件做风险分级(暂未覆盖,不等同于无风险)
- 还在维护吗
- 活跃:最近一次提交在 24 天前
档位由下列信号合成:本站实装验证(真实安装,当前最高到 L4)· 验证所用 dsh 版本 · 静态安装检查 · 风险分级 · 仓库维护状态。下方各区块是它的证据明细。 验证判据与等级说明 →
数据截至 2026/9/20(元数据每日更新 · 实装验证按队列轮转,单条结论的验证时间见上方)
用户评分
还没有人投票,来当第一个
订阅周报,不错过优质插件更新
每周一封 · 高评分插件 + 新用户活动
README
由 DeepSeek 最新模型翻译生成dsh-briefing-skill 日报/周报自动生成技能(DeepSeek Harness)| Daily/Weekly Work Briefing Skill (DeepSeek Harness) 一个零依赖、纯 Markdown 的 DeepSeek Harness (DSH) 技能,可从 DSH 会话日志自动生成当天任务简报(日报)与周报:扫描 DSH_HOME/sessions 下全部工作区的 session.jsonl.zstd,现场解码 zstd 多帧 JSONL,按工作区(项目)分组汇总任务活动,输出结构化 Markdown 简报并落盘到 docs/。 一个零依赖、纯 Markdown 的 DeepSeek Harness (DSH) 技能:从 DSH 会话日志自动生成当天任务简报(日报)与周报——扫描 DSH_HOME/sessions 下全部工作区的 session.jsonl.zstd,现场解码 zstd 多帧 JSONL,按工作区(项目)分组汇总任务活动,输出结构化 Markdown 简报并落盘到 docs/。 English Features - All workspaces covered: walks every workspace directory under DSH_HOME/sessions (not just the current project); each session's cwd field maps it back to its real project path - On-the-fly decoding: session.jsonl.zstd is a zstd multi-frame JSONL (each frame independently compressed with checksums) — the skill embeds a complete decoder (Node 22+ node:zlib), no external tools needed - Per-project grouping: daily/weekly briefings are organized by workspace (project): session topics, user requests, assistant replies, tool calls, written files (filesWritten) and disk-level recent file changes (recentFiles, excluding node_modules/.git/dist noise) - Time-based filtering: every log record carries a time field (epoch ms) — filter by any date range (today / this week / last week / custom) - Structured Markdown output: overview table → per-project details → file-change summary → failures/todos → next-step suggestions; saved as docs/yyyy_MM_dd_HH_日报.md / docs/yyyy_MM_dd_HH_周报.md - Hot-reload: drop the file in, no DSH restart needed - Ships with the extraction script dsh_briefing.cjs (same code embedded in the skill, handy for scripting) and the standalone decoder dsh_session_decode.cjs Requirements - DeepSeek Harness (DSH) - Node.js 22+ (the decoder relies on node:zlib built-in Zstandard support) Install Option A — user level (available in every project): Linux / macOS mkdir -p ~/.dsh/skills cp briefing.md ~/.dsh/skills/briefing.md Windows PowerShell New-Item -ItemType Directory -Path "$env:USERPROFILE\.dsh\skills" -Force Copy-Item briefing.md "$env:USERPROFILE\.dsh\skills\briefing.md" Option B — project level (this project only, ships with the repo): mkdir -p .dsh/skills cp briefing.md .dsh/skills/briefing.md DSH scans skill roots with hot reload: once the file is in place, the briefing skill appears in the session skill catalog () and the / menu without restarting. Optional: copy dsh_briefing.cjs / dsh_session_decode.cjs anywhere you like for standalone use. Usage /briefing 日报 /briefing 周报 # 本周(周一 → 今天) /briefing 上周周报 在 DSH Web/TUI 输入框中输入 /briefing ,或直接用自然语言提问——例如“生成今天的日报”“生成本周周报”“今天做了什么”——模型会自动加载此技能并运行完整流程:日期范围 → 解码所有工作区日志 → 按项目分组 → 将 Markdown 写入 docs/。 输出 docs/2026_09_01_11_日报.md docs/2026_09_01_11_周报.md 工作原理 每条 DSH 会话日志记录都是一个带有 time 时间戳(epoch 毫秒)的 JSON 对象;关键记录类型:session(头部:createdAt/cwd)、session/title、user/message、assistant/message、tool/call、tool/result(isError 标记失败)、todo/write。该技能按工作区聚合这些记录,并与磁盘上文件的实际修改时间进行交叉核对。 兼容性 Frontmatter 遵循 DSH 技能规范(name / description / whenToUse)。DSH 还会扫描 .agents/skills 根目录,因此稍作调整后,相同内容也可用于其他遵循 SKILL.md 约定的 agent(Claude Code / Codex)。 许可证 MIT 中文 功能 - 覆盖全部工作区:遍历 DSH_HOME/sessions 下所有工作区目录(不只当前项目);每个会话头部的 cwd 字段把会话归回真实项目路径 - 现场解码:session.jsonl.zstd 是 zstd 多帧 JSONL(每帧独立压缩、带校验和)——技能内嵌完整解码器(Node 22+ 的 node:zlib),无需外部工具 - 按项目分组:日报/周报按工作区(项目)组织:会话主题、用户请求、助手回复、工具调用、写过的文件(filesWritten)与磁盘级近期文件变更(recentFiles,排除 node_modules/.git/dist 等噪音) - 按时间过滤:每条日志记录带 time 时间戳(epoch 毫秒)——支持任意日期范围(今天 / 本周 / 上周 / 自定义) - 结构化 Markdown 输出:概览表 → 按项目详情 → 文件变更汇总 → 失败/待办 → 下一步建议;落盘为 docs/yyyy_MM_dd_HH_日报.md / docs/yyyy_MM_dd_HH_周报.md - 热加载:文件放入即生效,无需重启 DSH - 附带提取脚本 dsh_briefing.cjs(与技能内嵌代码一致,便于单独脚本化使用)与独立解码器 dsh_session_decode.cjs 环境要求 - DeepSeek Harness (DSH) - Node.js 22+(解码依赖 node:zlib 内置 Zstandard 支持) 安装 方式一:用户级(所有项目生效) bash Linux / macOS mkdir -p ~/.dsh/skills cp briefing.md ~/.dsh/skills/briefing.md Windows PowerShell New-Item -ItemType Directory -Path "$env:USERPROFILE\.dsh\skills" -Force Copy-Item briefing.md "$env:USERPROFILE\.dsh\skills\briefing.md" 方式二:项目级(仅当前项目生效,随仓库分发) bash mkdir -p .dsh/skills cp briefing.md .dsh/skills/briefing.md DSH 技能目录热加载:文件放入后无需重启,下一次会话即可在技能目录()与 / 菜单中看到 briefing。 可选:将 dsh_briefing.cjs / dsh_session_decode.cjs 复制到任意位置独立使用。 用法 /briefing 日报 /briefing 周报 # 本周(周一至今天) /briefing 上周周报 在 DSH Web / TUI 输入框直接输入 /briefing ,或用自然语言触发(如「生成今天的日报」「生成本周周报」「今天做了什么」),模型自动加载本技能并执行完整流程:确认日期范围 → 解码全部工作区日志 → 按项目分组 → 生成 Markdown 落盘到 docs/。 生成的文件 docs/2026_09_01_11_日报.md docs/2026_09_01_11_周报.md 原理简述 DSH 会话日志每条记录都是带 time 时间戳(epoch 毫秒)的 JSON 对象;关键记录类型:session(头部:createdAt/cwd)、session/title、user/message、assistant/message、tool/call、tool/result(isError 标记失败)、todo/write。技能按工作区聚合这些记录,并与磁盘上文件的实际修改时间交叉核对。 兼容性 frontmatter 符合 DSH 技能规范(name / description / whenToUse)。DSH 兼容扫描 .agents/skills 目录,同一份内容稍作调整亦可用于其他支持 SKILL.md 约定的 agent(Claude Code / Codex 等)。 许可证 MIT