CH4ACKO3/dsh-render-engine--packages-ansi-render ↗★ 0
@ch4acko3/dsh-ansi-render
Safe ANSI terminal output rendering service for DeepSeek Harness Web plugins
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:CH4ACKO3/dsh-render-engine#8401d60319cc256b73167e14460c12cec647db4f&path:packages/ansi-render说明文档
阅读完整 README ↗@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.