# Deploy Status

> Check the current deployment status, health, and recent CI runs. Use when you want to know if the service is up, check recent CI/CD activity, or diagnose deployment issues.

- Skill: `justnau1020/deploy-status` (Agent Skill)
- Install (CLI): `npx skillmds@latest add justnau1020/deploy-status`
- Raw SKILL.md: https://api.skillmd.com/api/skills/justnau1020/deploy-status/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: justnau1020 (https://skillmd.com/u/justnau1020)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/justnau1020/deploy-status

---


# Check Deployment Status

Check the current state of the production deployment.

## Steps

### 1. Health check

```bash
curl -sf https://{PRODUCTION_URL}/health
```

Check for a healthy response (status field, database connectivity, etc.).

### 2. Recent GitHub Actions runs

```bash
gh run list --limit 5
```

Check for any recent failures.

### 3. Report

Provide a clear status summary:
- Is the service up and healthy?
- What was the last deployment and its status?
- Any recent failures in CI?
- If unhealthy, suggest checking the project's runbook for troubleshooting

