From workspaces
Check prerequisites, verify installations, and run health checks for workspace services. Use when user says "check setup", "verify installation", "doctor", or "health check".
How this skill is triggered — by the user, by Claude, or both
Slash command
/workspaces:skills/workspace-doctorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check prerequisites, verify installations, and run health checks for workspace services.
Check prerequisites, verify installations, and run health checks for workspace services.
When the user wants to check workspace health:
Parse the ## Prerequisites section from WORKSPACE.md:
## Prerequisites
- Node.js 20+
- Docker & Docker Compose
- PostgreSQL 15+ (or use Docker)
Verify each prerequisite is installed and meets version requirements.
Always verify these tools are available:
git - Version controlcurl or wget - HTTP requestsjq - JSON processing (optional but recommended)Parse the ## Health Checks section:
## Health Checks
api: curl -s http://localhost:3000/health | grep -q "ok"
admin: curl -s http://localhost:3001 | grep -q "<!DOCTYPE"
Run each check and report results.
🩺 Workspace Doctor - Acme Corp
Prerequisites:
✓ Node.js 22.0.0 (required: 20+)
✓ Docker 24.0.6
✓ Docker Compose 2.21.0
✗ PostgreSQL not found (install or use Docker)
Tools:
✓ git 2.42.0
✓ curl 8.1.2
✓ jq 1.7
Projects:
✓ api - cloned at ~/work/acme/api
✓ admin - cloned at ~/work/acme/admin
✗ homepage - not cloned
Health Checks:
✓ api - healthy (http://localhost:3000/health)
○ admin - not running (port 3001)
Summary:
• 2 issues found
Recommendations:
• Clone missing projects: /workspaces:clone all
• Start services: /workspaces:start all
✓ - Passed✗ - Failed (blocking)○ - Warning (non-blocking)npx claudepluginhub patricio0312rev/workspaces-marketplace --plugin workspacesValidates developer environment: OS, runtime versions, tools, ports, env vars, disk space. Use when switching machines or encountering 'works on my machine' bugs.
Deterministic shell scripts for infrastructure health checks and environment validation. Runs connectivity probes for Vercel, Railway, Redis, PostgreSQL and verifies required env vars before deployment.
Validate integrated build pipeline and running services with health checks and smoke tests. Use when verifying project builds.