From outputai
Verifies Output SDK dev services (Docker containers, API on 3001, Temporal on 8080) are running. Use for ECONNREFUSED, timeouts, workflow failures, or starting development.
npx claudepluginhub growthxai/output --plugin outputaiThis skill is limited to using the following tools:
This skill verifies that all required Output SDK development services are running and healthy. The Output SDK requires three services for local development: Docker containers, the API server, and the Temporal server with its UI.
Runs shell scripts to check deployment health, service connectivity (Vercel, Railway, Redis, PostgreSQL), validate environment variables, and perform pre-deploy smoke tests with structured JSON output.
Checks Output SDK workflow status (RUNNING, COMPLETED, FAILED, TERMINATED). Use for monitoring async executions, verifying completion before results, polling in scripts, or handling failures.
Runs bash health checks on configured homelab services like Plex, Radarr, Sonarr, Unraid, and displays a formatted dashboard showing reachability, status icons, summaries, and context-sensitive follow-ups.
Share bugs, ideas, or general feedback.
This skill verifies that all required Output SDK development services are running and healthy. The Output SDK requires three services for local development: Docker containers, the API server, and the Temporal server with its UI.
docker ps | grep output
Expected: You should see containers related to output running. If no containers appear, Docker may not be running or the services haven't been started.
curl -s http://localhost:3001/health
Expected: Returns a health status response. If this fails with "Connection refused", the API server is not running.
curl -s http://localhost:8080 > /dev/null && echo "Temporal UI accessible" || echo "Temporal UI not accessible"
Expected: "Temporal UI accessible". If not accessible, Temporal server may not be running.
# Start all development services
npx output dev
Wait 30-60 seconds for all services to initialize, then re-run the checks.
# Restart all services using Docker Compose
docker compose down
docker compose up -d
lsof -i :3001 and lsof -i :8080docker compose logsIF docker_not_running:
ACTION: Start Docker Desktop/daemon
WAIT: for Docker to initialize
IF no_output_containers:
RUN: npx output dev
WAIT: 30-60 seconds for services
IF api_not_responding:
CHECK: port 3001 for conflicts
RUN: output dev (if not already running)
IF temporal_not_accessible:
CHECK: port 8080 for conflicts
CHECK: docker compose logs for Temporal errors
IF all_services_healthy:
PROCEED: with workflow debugging
Scenario: User reports "connection refused" when running a workflow
# First, check if services are running
docker ps | grep output
# Output: (empty - no containers)
# Start services
npx output dev
# Wait and verify
sleep 60
curl -s http://localhost:3001/health
# Output: {"status":"healthy"}
Scenario: Partial service failure
# API responds but Temporal doesn't
curl -s http://localhost:3001/health # Works
curl -s http://localhost:8080 # Fails
# Check Temporal logs
docker compose logs temporal
# Restart just Temporal
docker compose restart temporal