wefio/dsh-engineering-services ↗★ 0
@local/dsh-engineering-services
IDE engineering services for DeepSeek Harness: LSP diagnostics/navigation/rename, DAP debugging (debugpy + js-debug), and task-toolchain build/test/lint runs.
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.