deploy-check

deploy-check is a skill for Claude Code from GlamgarOnDiscord/claude-saas-blueprint. It costs 30 tokens per session (536 once invoked), scanned A, original, MIT.

A pre-deployment checklist for publishing an application to staging or production. It supports Vercel, Railway, and Docker-based servers, and can check database migrations and access rules.

In plain words
What is it for?
It runs checks for TypeScript, linting, tests, environment variables, debug logging, migrations, and row-level security. It can also deploy to the selected platform and run a basic check after deployment.
Why use it?
It catches code, test, configuration, secret, migration, and database-security problems before they reach users.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/pre_deploy_check.py --env [staging|production].

Good fit It runs checks for TypeScript, linting, tests, environment variables, debug logging, migrations, and row-level security. It can also deploy to the selected platform and run a basic check after deployment.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/GlamgarOnDiscord/claude-saas-blueprint
agentmods
npx agentmods add skills/glamgarondiscord/claude-saas-blueprint/deploy-check

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for deploy-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/glamgarondiscord/claude-saas-blueprint/deploy-check/github.svg)](https://agentmods.dev/skills/glamgarondiscord/claude-saas-blueprint/deploy-check)
Your own site
<a href="https://agentmods.dev/skills/glamgarondiscord/claude-saas-blueprint/deploy-check"><img src="https://agentmods.dev/badge/skills/glamgarondiscord/claude-saas-blueprint/deploy-check/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for deploy-check

Your own site · 80×15
<a href="https://agentmods.dev/skills/glamgarondiscord/claude-saas-blueprint/deploy-check"><img src="https://agentmods.dev/badge/skills/glamgarondiscord/claude-saas-blueprint/deploy-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 536 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.00536
Opus 5 $0.00015 $0.00268
Sonnet 5 $0.00006 $0.00107
Haiku 4.5 $0.00003 $0.00054

Measured 11d ago against content hash 52f074d7004a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

deploy-check scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

1. Smoke test : `curl https://[domain]/api/health`
.claude/skills/deploy-check/SKILL.md · 64 lines

What it actually says

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

  1. Smoke test : curl https://[domain]/api/health
  2. Logs plateforme — 0 erreur 500 dans les 2 premières minutes
  3. Sentry — nouvelles erreurs ?
  4. Mettre à jour .claude/memory/session.md avec 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])

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 64 lines · 30 tokens per session scan A 52f074d7004a

Subscribe to this mod's changes

deploy-check is a skill published in the GitHub repository GlamgarOnDiscord/claude-saas-blueprint (2 stars, last pushed 3mo ago), licensed MIT. It adds 30 tokens to every session and 536 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

aws-strands-agents-agentcore

Use when working with AWS Strands Agents SDK or Amazon Bedrock AgentCore platform for building AI agents. Provides architecture guidance, implementation patterns, deployment strategies, observability, quality evaluations, multi-agent orchestration, and MCP server integration.

sammcj/agentic-coding · 55 tokens

aws-well-architected-framework-review

Perform a full AWS Well-Architected Framework review evaluating all 57 questions across 6 pillars by analyzing code, IaC, and configurations to produce evidence-backed findings with Eisenhower-prioritized remediation.

aws-samples/sample-well-architected-skills-and-steering · 50 tokens

wafr-facilitator

Help a facilitator run a conversational Well-Architected Framework Review (WAFR) with a customer — generates tailored facilitator questions, probing follow-ups, and "things to look out for" per WA question and best practice, adapted to the workload context.

aws-samples/sample-well-architected-skills-and-steering · 58 tokens

migration-readiness

Assess a workload's readiness to migrate to AWS by analyzing existing code, dependencies, configurations, and infrastructure to produce evidence-backed findings covering the 7 Rs, risks, and a migration plan.

aws-samples/sample-well-architected-skills-and-steering · 42 tokens

wa-builder

"Learn then Build" — help developers understand AWS Well-Architected best practices for their specific workload, then produce actionable visual artifacts (architecture diagrams with WA annotations, decision trees, improvement roadmaps) they can commit and use. Adapts explanations for beginners and generates artifacts…

aws-samples/sample-well-architected-skills-and-steering · 98 tokens

wa-guardrails

Generate preventive Well-Architected guardrails — AWS Config rules, Service Control Policies, permission boundaries, CloudWatch alarms, and IaC policy checks (CDK Aspects, cfn-guard, OPA/Sentinel) — plus an optional governance steering doc, so a workload stays aligned with Well-Architected best practices over time…

aws-samples/sample-well-architected-skills-and-steering · 134 tokens