بنقرة واحدة
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"
}
}