name-loading/dsh-vscode0

dsh-vscode

Use DeepSeek Harness (DSH) directly inside the VS Code sidebar by embedding its web UI. Auto-starts `dsh web`, reuses an existing server, and reopens your most recent session.

AI 분석

核心用途是将 DSH 聊天界面无缝集成到 VS Code 编辑器侧边栏中。适合开发者在编写代码时快速调用 AI 辅助,无需切换窗口。

패키지
dsh-vscode
버전
0.1.0
라이선스
MIT
최근 업데이트
2026. 8. 14.

설치

검증된 bundle이 없거나 호환성 검사에 실패했습니다. 먼저 저장소 설명을 읽어 주세요. 전체 README 읽기 ↗

配置

开箱即用:默认 dsh.command = dshdsh.args = ["web"]dsh.cwd = ""——适配 npm i -g @deepseek-ai/dshdsh 在 PATH 上的用户,且默认复用已运行的 DSH。

设置默认说明
dsh.commanddsh启动 DSH 的可执行文件
dsh.args["web"]传给 command 的参数
dsh.cwd""进程工作目录(空 = 继承 VS Code)
dsh.host127.0.0.1绑定主机(侧栏只能嵌入 loopback)
dsh.port3080监听端口
dsh.autoStarttrue视图可见且无服务时自动启动
dsh.reuseExistingtrue优先复用已运行的 DSH
dsh.resumeRecenttrue打开时恢复最近一条非空会话
dsh.startupTimeoutMs30000启动后等待可达的时长

源码 checkout(dsh 不在 PATH 上),在 VS Code 设置里加:

{
  "dsh.command": "pnpm",
  "dsh.args": ["run", "dsh", "web"],
  "dsh.cwd": "/path/to/deepseek-harness"
}