安装
npx @deepseek-ai/dsh plugin --profile web add dsh-conversation-exporter此命令根据 GitHub 仓库地址生成。运行前请检查上游 README 与源代码;需要可复现安装时,请固定 release 或 commit。
README
维护者编写的文档快照。
DSH Conversation Exporter
DSH Conversation Exporter adds an Export Chat action to DeepSeek Harness (DSH) Web. It downloads the current conversation as a clean Markdown file containing the human-authored messages and final assistant answers, ready for reading, notes, Git, or handoff to another AI assistant.
Demo
Export directly from DSH Web

Clean Markdown output

Export Chat vs. Session Log
Export Chat is an additive action; it does not replace or modify DSH's official Session Log export.
| Export Chat | Official Session Log | |
|---|---|---|
| Purpose | Reading and AI handoff | Debugging, recovery, and replay |
| Contents | Human messages and final assistant answers | Raw events, chunks, tool activity, metadata, and attachments |
| Format | One Markdown file | ZIP of JSONL artifacts and media |
Use Export Chat when you want the conversation. Use Session Log when you need a lossless record of how DSH produced it.
Install and activate
For DSH installations run through npx @deepseek-ai/dsh, add the plugin to the web
profile:
npx @deepseek-ai/dsh plugin --profile web add dsh-conversation-exporter
Adding the package to the web profile activates its host and browser components. If DSH
Web is already running, stop it and restart it so the profile is recomposed:
npx @deepseek-ai/dsh web
Use
- Open a conversation in DSH Web.
- Select Export Chat in the current session header, beside Session Log.
- Your browser downloads
<session-title>--<short-session-id>.md, for exampleProject-Architecture-Guide--2002da4d.md.
The export starts with the final DSH session title as a Markdown H1, uses blockquoted
Human and Assistant labels, and preserves message Markdown. If one message leaves
a fenced code block open, the exporter closes that fence before the next transcript
section. DSH
internals such as reasoning, tool calls and results, runtime metadata, paths, and token
accounting remain omitted. An unanswered turn is marked with > Response incomplete.,
and an image-only human message is retained as [Image omitted].
Privacy
Exporting is local-only. The plugin reads the selected DSH session through the local DSH runtime and returns the Markdown to the same local Web application. It has no upload, cloud storage, telemetry, or analytics path. The repository contains only hand-written, sanitized test conversations.
Limitations
- Exports the current session only, in Markdown only.
- Keeps human-authored text and the final assistant answer; attachments, images, reasoning, tool activity, injected context, subagent logs, and intermediate responses are omitted.
- Preserves message Markdown verbatim except for a deterministic closing fence added when a message otherwise ends inside a fenced code block.
- An image-only human message is represented by
[Image omitted]; image data is not embedded.
Compatibility
DSH is developer-preview software and its plugin APIs may change. V0.2 was validated with
@deepseek-ai/dsh@0.1.0-rc.6; a later DSH version may require an exporter update.
Development
Requires Node.js 20 or newer.
To install the plugin from a local checkout for contributor or development testing:
npx @deepseek-ai/dsh plugin --profile web add .
Run the project verification locally:
npm run verify
This runs the complete test suite, JavaScript syntax checks, and an npm package dry-run.
Licensed under the MIT License.
项目文件与信号
以下项目是目录快照中检测到的公开仓库信号。
仓库信息
- 开发语言
- JavaScript
- 许可证
- MIT
- 最新发布
- v0.2.0
- 最后更新
- 2026年8月17日 04:32
谨慎安装
请检查源代码、权限、生命周期脚本、依赖与网络访问;不受信任的插件应先在隔离环境中测试。