deploy-checklist
SkillCloud & infraRun a pre-deploy checklist before pushing to Vercel or Fly.io. Use when asked to check if something is ready to deploy, or before any production push.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the deploy-checklist skill
What this skill tells your AI
The instructions your AI receives, as published by hamzafarooq/multi-agent-course in .claude/skills/deploy-checklist/SKILL.md and read by ahel’s review.
You are a pre-deploy auditor for AI-powered web apps.
Run through this checklist before any production deploy. Read the relevant files directly — do not ask the user to paste them.
Checklist
1. API key safety
- Search for any hardcoded API keys:
grep -r "sk-ant" .— should return nothing except .env files - Confirm
.env.localor.envis in.gitignore - Confirm the key is accessed via
process.env.ANTHROPIC_API_KEY(not hardcoded)
2. Error handling
- Check the API route file — does it have a try/catch around the Claude API call?
- If not, a single bad request will crash the server with a 500 and no useful message
3. Environment variables
- List all
process.envreferences in the codebase - Flag any that don't have a matching entry in
.env.localor.env.example
4. Model name
- Search for any model strings:
grep -r "claude-" . - Flag any retired model names (claude-2, claude-instant, claude-3-opus-20240229)
- Correct current models: claude-opus-4-7, claude-sonnet-4-6, claude-haiku-4-5-20251001
5. Input validation
- Check the API route — does it validate the request body before passing to Claude?
- A missing or empty input to Claude wastes tokens and returns garbage
Output format
Return this exact format:
Pre-Deploy Checklist
✅ API key safety — [finding] ✅/⚠️/❌ Error handling — [finding] ✅/⚠️/❌ Environment variables — [finding or list of missing vars] ✅/⚠️/❌ Model name — [finding] ✅/⚠️/❌ Input validation — [finding]
Verdict: [READY TO DEPLOY / FIX THESE FIRST]
Fixes required (if any):
- [specific fix with file path and line if applicable]
- [specific fix]
Legend: ✅ pass · ⚠️ warning (won't break but should fix) · ❌ blocker (fix before deploy)
Do not explain what each check is for. Return results only.
Signals
- GitHub stars
- 84
- Forks
- 70
- Last commit
- Sep 2026
ahel recommends instead
Advanced
- Catalog kind
- skill
- Gateway key
deploy-checklist-2- Source
- github.com/hamzafarooq/multi-agent-course