ワンクリックで
deployment
Prepare deployment configuration, environment setup, health checks, and rollback procedures
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Prepare deployment configuration, environment setup, health checks, and rollback procedures
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Design RESTful APIs with proper resource modeling, error handling, pagination, and documentation
Design system architecture, data models, API contracts, and create Architecture Decision Records (ADRs)
Implement backend functionality including APIs, business logic, database operations, and integrations
Comprehensive code review checking for security, performance, maintainability, and best practices
Implement frontend user interfaces with modern frameworks, responsive design, and accessibility standards
Perform comprehensive security audits checking for OWASP Top 10 vulnerabilities and security best practices
| name | deployment |
| description | Prepare deployment configuration, environment setup, health checks, and rollback procedures |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep |
Prepare production-ready deployment configurations.
# Application
NODE_ENV=production
PORT=3000
# Database
DATABASE_URL=postgres://...
# Auth
JWT_SECRET=<secret>
# External Services
REDIS_URL=redis://...
// GET /health
{
"status": "healthy",
"version": "1.0.0",
"checks": {
"database": "connected",
"redis": "connected"
}
}