一键导入
post-deploy
Post-deployment smoke tests and notification workflow. Verifies critical paths are working and notifies the team of deployment status.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Post-deployment smoke tests and notification workflow. Verifies critical paths are working and notifies the team of deployment status.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Review code changes against project standards with structured feedback on security, performance, naming, error handling, and test coverage.
Pre-deployment validation checklist. Verifies environment variables, build output, database migrations, and dependency security before shipping.
Validate project configuration files against team standards. Checks ESLint, TypeScript, Prettier, and package.json for common misconfigurations.
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 | post-deploy |
| description | Post-deployment smoke tests and notification workflow. Verifies critical paths are working and notifies the team of deployment status. |
Run smoke tests against a freshly deployed environment to verify critical user paths are working, then notify the team of the deployment status.
Use this skill when:
Identify the deployment target:
https://staging.example.com)staging | productionRun health checks:
# Basic connectivity
curl -sf {URL}/api/health | jq .
# Response time baseline
curl -o /dev/null -s -w '%{time_total}\n' {URL}
# SSL certificate validity
echo | openssl s_client -servername {domain} -connect {domain}:443 2>/dev/null | openssl x509 -noout -dates
Expected results:
{"status": "ok"}Test critical user paths:
Check infrastructure:
Generate deployment notification:
🚀 Deployed to {environment}
Version: {commit_hash_short}
Branch: {branch}
Deployed by: {deployer}
Time: {timestamp}
Smoke Tests: ✅ All passing (or ❌ X failures)
Health: {response_time}ms
Changes:
- {commit_message_1}
- {commit_message_2}
Dashboard: {monitoring_url}
Post a comment on the merged PR or create a release note with the smoke test results.
Output a post-deploy report:
## Post-Deploy Report: {environment}
| Check | Status | Details |
|----------------|--------|----------------------|
| Health | ✅ | 200 OK, 127ms |
| Auth | ✅ | Login flow works |
| Core Features | ✅ | 5/5 paths verified |
| Error Tracking | ✅ | Sentry connected |
| SSL | ✅ | Valid for 83 days |
### Deployment: HEALTHY ✅
If issues are detected:
git revert {commit} && git pushRun post-deploy checks on https://staging.myapp.com
Verify production is healthy after the latest deploy
Generate a deploy notification for Slack