CH4ACKO3/dsh-render-engine--packages-ansi-render0

@ch4acko3/dsh-ansi-render

Safe ANSI terminal output rendering service for DeepSeek Harness Web plugins

包名
@ch4acko3/dsh-ansi-render
版本
0.1.1
许可证
MIT
最近更新
2026年8月21日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:CH4ACKO3/dsh-render-engine#8401d60319cc256b73167e14460c12cec647db4f&path:packages/ansi-render

@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.