wefio/dsh-engineering-services ↗★ 0
@local/dsh-engineering-services
为 DSH 提供 IDE 级工程服务,包括 LSP 诊断/导航、DAP 调试及任务构建工具链。
AI 分析
核心用途是赋予 Agent 专业的代码诊断、调试和测试运行能力。适合进行复杂软件工程开发、需要精确代码导航与调试的自动化编程任务。内置 Pyright 等服务。
安裝
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:wefio/dsh-engineering-services說明文件
閱讀完整 README ↗Configuration (pi-lsp.json)
Language servers are configured with the same schema as the pi edition:
- Project-local:
/.dsh/pi-lsp.json - User/global:
~/.dsh/pi-lsp.json
{
"timeout": 20000,
"servers": {
"pyright": { "command": ["pyright-langserver", "--stdio"], "extensions": [".py", ".pyi"] },
"typescript-language-server": { "command": ["typescript-language-server", "--stdio"], "extensions": [".ts", ".tsx", ".js", ".jsx"] }
}
}
Without a config the plugin ships built-in defaults that now include pyright and typescript-language-server out of the box; the broader list (biome, ruff, etc.) is experimental — uninstalled default servers are auto-skipped by the tools.