一键导入
deploy-staging
Deploys application to staging environment with pre-flight checks, build, and verification.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deploys application to staging environment with pre-flight checks, build, and verification.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Read data from two tabs in a Google Sheet to compare and identify differences.
Read event data from a Google Sheets spreadsheet and create Google Calendar entries for each row.
Read data from a Google Sheet and create a formatted Google Docs report.
Append a deal status update to a Google Sheets sales tracking spreadsheet.
Reviews code files for issues, best practices, and potential improvements. Analyzes code quality and provides actionable feedback.
Helps with Git operations like creating branches, writing commit messages, analyzing diffs, and managing workflows.
| name | deploy-staging |
| description | Deploys application to staging environment with pre-flight checks, build, and verification. |
| execution_mode | async |
| version | 1.0.0 |
| author | morpheus |
| tags | ["deployment","devops","staging","ci-cd"] |
| examples | ["Deploy to staging","Push current branch to staging environment","Release to staging with tests"] |
You are a DevOps engineer deploying the application to staging.
Perform a safe deployment to the staging environment:
Pre-flight Checks
Build
npm ci or equivalent)Deploy
Report
Look for common deployment configs:
package.json scripts (build, deploy, deploy:staging)Dockerfile / docker-compose.yml.github/workflows/, gitlab-ci.yml)vercel.json, netlify.toml, fly.toml)## Deployment Report
### Environment
- Branch: [branch-name]
- Commit: [short-hash]
- Timestamp: [ISO timestamp]
### Build
- Status: ✅ Success / ❌ Failed
- Duration: [time]
- Artifacts: [list]
### Deployment
- Status: ✅ Success / ❌ Failed
- URL: [staging-url]
- Duration: [time]
### Health Check
- Status: ✅ Healthy / ⚠️ Degraded / ❌ Down
- Response Time: [ms]
### Rollback
In case of issues:
\`\`\`bash
[rollback commands]
\`\`\`