dsh-ansi-render
已验证@ch4acko3/dsh-ansi-render · v0.1.2 · MIT · Web 界面
Safe ANSI terminal output rendering service for DeepSeek Harness Web plugins
安装
dsh plugin add @ch4acko3/dsh-ansi-render 用 dsh --profile default --dump-config 确认 layer 已生效 —— 参见安装指南。
源码
标签
说明文档
@ch4acko3/dsh-ansi-render
A browser-side Cordis service that renders ANSI terminal output as escaped HTML. It supports common SGR styles, 16-color, 256-color, true-color, and allowlisted HTTP or HTTPS terminal hyperlinks through ansi_up.
const result = ctx.ansiRenderer.render({
text: '\u001b[1;31mERROR\u001b[0m build failed',
})
console.log(result.html)
The service creates a fresh parser for each render call. It does not emulate a terminal, execute control sequences, or maintain cursor state between requests.