원클릭으로
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]
\`\`\`