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.From its SKILL.md
npx -y skills add justnau1020/claude-os --skill deploy-statusAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 2 commands, including `curl -sf https://{PRODUCTION_URL}/health` and 1 more.
- fetches URLsInstructs the agent to fetch 1 URL, including https://{PRODUCTION_URL}/health.
SKILL.md
0.8 KB, 134 tokens by cl100k_base, as published. Nobody here has run it
Check Deployment Status
Check the current state of the production deployment.
Steps
1. Health check
curl -sf https://{PRODUCTION_URL}/health
Check for a healthy response (status field, database connectivity, etc.).
2. Recent GitHub Actions runs
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
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.