ChuanTianML/dsh-local-share ↗★ 0
dsh-local-share
为 DeepSeek Harness 会话提供本地、隐私优先的 Markdown 和单文件 HTML 分享插件。
AI 分析
在本地安全地将对话导出为 Markdown 或包含完整样式的 HTML,支持脱敏。适合对数据隐私要求极高、需要离线保存或分享对话的用户。
安裝
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:ChuanTianML/dsh-local-share說明文件
閱讀完整 README ↗Host configuration
The defaults work for ordinary Sessions. For an explicit, auditable setup, add
the complete config object to $DSH_HOME/profiles/web/cordis.patch.yml
(~/.dsh/profiles/web/cordis.patch.yml when DSH_HOME is unset):
- id: dsh-local-share
config:
maxEvents: 20000
maxOutputChars: 2000000
maxToolArgumentChars: 12000
Harness profile patches replace the target config object rather than deeply
merging individual fields, so writing all three limits is the clearest option.
Confirm the final composition without starting the Web server:
dsh --profile web --dump-config
| Field | Default | Meaning |
|---|---|---|
maxEvents | 20000 | Maximum raw Session events accepted |
maxOutputChars | 2000000 | Maximum file or preview characters |
maxToolArgumentChars | 12000 | Maximum retained arguments per enabled tool call |
Session and output overflows fail visibly. Tool arguments alone may be truncated, with a warning in the preview. Invalid values fail when the plugin loads.