SleepEggTart/dsh-dev-wrapped ↗★ 0
dsh-dev-wrapped
Developer Wrapped for DeepSeek Harness — your coding journey with AI, visualized.
AI 분석
核心用途是扫描并解析 DSH 会话数据,生成可视化的 HTML/JSON 格式年度编程报告。适合想要回顾和统计与 AI 协同开发数据的 DSH 用户。前置条件是系统需安装 zstd。
설치
검증된 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 })