dsh-firstrun
DeepSeek Harness (dsh) 的首次运行健康检查:验证 Node/pnpm/dsh 工具链、配置文件、API 密钥、工作区和注册表配置,并打印可操作的后续步骤。
AI 分析
对 DSH 运行环境进行一键体检。适合新用户在首次安装或环境配置出错时,快速排查工具链、API 密钥及工作区配置问题。
安裝
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:zoahdev/dsh-firstrun說明文件
閱讀完整 README ↗In-harness usage (agent-callable)
Ask your dsh agent:
帮我体检一下环境,看看还缺什么。 Run a first-run health check:
quickstart.
The tool returns a dsh-firstrun/v1 report:
{
"schema": "dsh-firstrun/v1",
"ok": false,
"summary": { "total": 8, "pass": 5, "warn": 1, "fail": 2 },
"checks": [
{ "id": "node", "name": "Node.js installed", "status": "pass", "detail": "v24.19.0", "nextStep": null },
{ "id": "api-key", "name": "API key configured", "status": "fail", "detail": "None of DEEPSEEK_API_KEY, OPENAI_API_KEY is set", "nextStep": "Store an API key: export DEEPSEEK_API_KEY=... or use the Web Models page" }
],
"generatedAt": "2026-08-18T00:00:00Z"
}
在 harness 内使用(agent 可调用)
对 agent 说:
帮我体检一下环境,看看还缺什么。
工具返回 dsh-firstrun/v1 报告(结构见英文版 JSON 示例)。