SleepEggTart/dsh-dev-wrapped0

dsh-dev-wrapped

DeepSeek Harness 开发者年度总结:可视化你的 AI 编程之旅。

AI 分析

核心用途是扫描并解析 DSH 会话数据,生成可视化的 HTML/JSON 格式年度编程报告。适合想要回顾和统计与 AI 协同开发数据的 DSH 用户。前置条件是系统需安装 zstd。

套件
dsh-dev-wrapped
版本
0.1.0
授權
MIT
最近更新
2026年8月26日

安裝

此插件尚未提供可驗證的 bundle,或相容性檢查未通過。請先閱讀倉庫說明。 閱讀完整 README ↗

库使用

import { DshAdapter, aggregate } from 'dsh-dev-wrapped'

const adapter = new DshAdapter()
const files = await adapter.scan('~/.dsh') // 实际使用绝对路径
const events = []
for (const f of files) {
  await adapter.parse(f, (e) => events.push(e))
}
const report = aggregate(events, { includeSubagents: false })