一键导入
deploy-check
Pre-deployment validation checklist. Verifies environment variables, build output, database migrations, and dependency security before shipping.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Pre-deployment validation checklist. Verifies environment variables, build output, database migrations, and dependency security before shipping.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Review code changes against project standards with structured feedback on security, performance, naming, error handling, and test coverage.
Validate project configuration files against team standards. Checks ESLint, TypeScript, Prettier, and package.json for common misconfigurations.
Post-deployment smoke tests and notification workflow. Verifies critical paths are working and notifies the team of deployment status.
Generate component boilerplate following project conventions. Supports React and Vue with TypeScript, tests, and stories.
Bootstrap a complete development environment for new contributors. Installs dependencies, configures tools, seeds databases, and verifies everything works.
基于 SOC 职业分类
| name | deploy-check |
| description | Pre-deployment validation checklist. Verifies environment variables, build output, database migrations, and dependency security before shipping. |
Run a comprehensive pre-deployment validation to catch issues before they hit production. This skill checks environment configuration, build integrity, database state, and dependency security.
Use this skill when:
Read the project template at ../../_references/project-template.md to understand the expected deployment configuration.
Check environment variables:
.env.example or .env.template for required variablesDEBUG=trueLOG_LEVEL=debug (should be info or warn)NODE_ENV=developmentDATABASE_URL uses SSL in production (?sslmode=require or ?ssl=true)sk_test_, pk_test_ prefixes)CORS_ORIGIN is set to the actual domain, not * or localhostValidate the build:
npm run build or equivalent)console.log statements in production code:
grep -r "console.log" dist/ --include="*.js" | head -20
Check database migrations:
npx prisma migrate status or equivalentCheck dependencies:
npm audit --production and flag any high/critical vulnerabilitiespackage-lock.json or pnpm-lock.yaml is committed and up to datefile: or link: dependencies exist in productionCheck git state:
git status --porcelain)Output a deployment report:
## Deploy Check: {environment}
| Check | Status | Details |
|----------------|--------|-----------------|
| Env Vars | ✅ | 12/12 set |
| Build | ✅ | 342KB gzipped |
| Migrations | ⚠️ | 1 pending |
| Dependencies | ✅ | 0 vulnerabilities |
| Git State | ✅ | Clean, up to date |
### Ready to deploy: YES / NO
Run a deploy check for production
Check if we're ready to deploy to staging