用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/UitbreidenOS/UitKit --skill dev-doctor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Guidelines and instructions for Agent execution state rollback rules
Guidelines and instructions for Agent execution step counters limits
Guidelines and instructions for Agent execution timeout limits setups
基于 SOC 职业分类
| name | dev-doctor |
| description | Claude Code dev doctor: workflow guidelines, best practices, instructions, and integration examples |
Activate when a user reports that "the app won't start", "the database isn't connecting", or when experiencing generic ECONNREFUSED or startup errors. Invoked via /dev-doctor.
Do not use for debugging specific syntax errors, failing unit tests, or logic bugs inside application code. This is strictly for environment and infrastructure health checks.
.env.example or .env.template exists. If it does, compare its keys against the actual .env file. Report any missing keys.docker-compose.yml, package.json scripts) to find expected ports (e.g., 3000, 5432, 6379, 8080). Use lsof -i :<port> or netstat -tuln | grep <port> to check if those ports are already occupied by zombie processes.docker info to verify the Docker daemon is actually running.node_modules exists. Run npm ls or yarn check to see if dependencies need installing.pip freeze matches requirements.txt.kill -9 1234 to free port 3000" or "Copy .env.example to .env and fill in DATABASE_URL"). Ask for permission before running the fix.User: /dev-doctor
Claude: Running environment diagnostics...
.env.example but no .env.node_modules is present and up to date.Suggested Fixes:
.env.example to .env.