dsh-code-frame-render
已验证@ch4acko3/dsh-code-frame-render · v0.1.2 · MIT · Web 界面
Syntax-highlighted diagnostic code frame rendering service for DeepSeek Harness Web plugins
安装
dsh plugin add @ch4acko3/dsh-code-frame-render 用 dsh --profile default --dump-config 确认 layer 已生效 —— 参见安装指南。
源码
发布到 npm 但没有公开仓库。安装前请检查包内容。
标签
说明文档
@ch4acko3/dsh-code-frame-render
A browser-side Cordis service that renders syntax-highlighted source context with diagnostic ranges and messages. It performs no file IO and does not depend on an LSP implementation.
Positions are zero-based UTF-16 code-unit offsets, matching the LSP position model. Diagnostics from compilers, linters, tests, agents, or language servers can therefore be adapted into the same request shape.
const result = ctx.codeFrameRenderer.render({
code: 'const value = missing\n',
language: 'ts',
fileName: 'app.ts',
diagnostics: [{
range: {
start: { line: 0, character: 14 },
end: { line: 0, character: 21 },
},
message: 'Cannot find name "missing"',
severity: 'error',
}],
})
console.log(result.html)