Deploy check
Skill GlamgarOnDiscord/claude-saas-blueprint/.claude/skills/deploy-check
Plug-and-play AI workflow that turns Claude Code, Cursor, Copilot or any AI agent into a senior SaaS engineer. Hexagonal architecture, multi-tenant by default, 31 skills + APEX workflow.
npx -y skills add GlamgarOnDiscord/claude-saas-blueprint --skill deploy-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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.
What its author says it does
Copied from the file, not written here
Validation complète pré-déploiement. Supporte Vercel, Railway, Docker/VPS. Utilise les scripts Python du projet.
SKILL.md
1.9 KB, as published. Nobody here has run it
Arguments
env: staging | production
Étape 1 — Pre-deploy checks (script unifié)
python scripts/pre_deploy_check.py --env [staging|production]
Couvre : TypeScript, lint, tests, secrets, .env.example, console.log, migrations, RLS.
Bloquer si exit 1.
Étape 2 — Plateforme de déploiement
Vercel (recommandé SaaS Next.js)
vercel --env staging # Preview URL
vercel --prod # Production
Variables requises dans Vercel : DATABASE_URL (pooler port 6543), DIRECT_URL (port 5432),
NEXT_PUBLIC_SUPABASE_URL, NEXT_PUBLIC_SUPABASE_ANON_KEY, SUPABASE_SERVICE_ROLE_KEY.
Railway
railway up --environment staging
railway up --environment production
Docker / VPS (Coolify, Dokku)
docker build -t app:$(git rev-parse --short HEAD) .
docker push [registry]/app:[tag]
# Puis trigger deploy via webhook ou CLI Coolify/Dokku
Étape 3 — Migrations DB (si Supabase)
python scripts/supabase_migrate.py --diff # Voir ce qui va être appliqué
python scripts/supabase_migrate.py --env [env] # Appliquer
python scripts/supabase_rls_check.py # Vérifier RLS
Étape 4 — Post-deploy
- Smoke test :
curl https://[domain]/api/health - Logs plateforme — 0 erreur 500 dans les 2 premières minutes
- Sentry — nouvelles erreurs ?
- Mettre à jour
.claude/memory/session.mdavec la version déployée
Rollback
Vercel : vercel rollback [deployment-url]
Railway : railway rollback
Docker : redéployer le tag précédent
DB : créer une nouvelle migration inverse (python scripts/supabase_migrate.py --new rollback-[feature])