If you see a clear error signature, jump to the matching fix in
troubleshooting-basics.md or
error-patterns.md.
4) Verify env vars and port binding
Confirm all required env vars are set (especially secrets marked sync: false).
Ensure the app binds to 0.0.0.0:$PORT (not localhost).
5) Redeploy only after fixing the first failure
Avoid repeated deploys without changes; fix one issue at a time.
1---2name: 1572-post-deploy-checks-bd1e3e243description: Post-deploy checks4---5# Post-deploy checks67Use this after any deploy or service creation. Keep it short; stop when a check fails.89## 1) Confirm deploy status1011```12list_deploys(serviceId: "<service-id>", limit: 1)13```1415- Expect `status: "live"`.16- If status is failed, inspect build/runtime logs immediately.1718## 2) Verify service health1920- Hit the health endpoint (preferred) or `/` and confirm a 200 response.21- If there is no health endpoint, add one and redeploy.2223## 3) Scan recent error logs2425```26list_logs(resource: ["<service-id>"], level: ["error"], limit: 50)27```2829- If you see a clear error signature, jump to the matching fix in30 [troubleshooting-basics.md](troubleshooting-basics.md) or31 [error-patterns.md](error-patterns.md).3233## 4) Verify env vars and port binding3435- Confirm all required env vars are set (especially secrets marked `sync: false`).36- Ensure the app binds to `0.0.0.0:$PORT` (not localhost).3738## 5) Redeploy only after fixing the first failure3940- Avoid repeated deploys without changes; fix one issue at a time.
Run npx skillmds@latest add tools-only/1572-post-deploy-checks-bd1e3e24 in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Post-deploy checks It is listed under DevOps & Infra on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
tools-only (@tools-only) published this skill. Their other Agent Skills are listed on their SkillMD profile.