dmsobtl/dsh-session-analyst ↗★ 0
dsh-session-analyst
Session quality analysis plugin for DeepSeek Harness — detect inefficiencies, redundant tool calls, and regressions in agent behavior.
AI Analysis
核心用途是诊断智能体运行效率。适合需要优化智能体工具调用逻辑、减少不必要步骤以节省 Token 的开发者。
Install
This plugin has no verified bundle, or compatibility checks failed. Read the repository notes first. Read the full README ↗
README
Read the full README ↗Standalone usage (without dsh)
The parser and analyzer are usable as a library:
import { parseSessionFile, analyzeSession, compareSessions } from 'dsh-session-analyst'
const session = await parseSessionFile('./session.jsonl')
const analysis = analyzeSession(session)
console.log(analysis.summary)