Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/wojons/skills --skill testing-level-production명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | testing-level-production |
| description | Testing strategy for production deployment |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Comprehensive testing approach for production applications with real users, revenue, and reputation at stake.
Use this skill when:
Core Philosophy: "Production-grade" quality with comprehensive risk mitigation. Assume failures will happen and test accordingly.
Comprehensive Testing Suite:
Automated Unit Testing
Integration Testing
End-to-End Automation
Performance & Load Testing
Security Testing
Accessibility Testing
Compatibility Testing
Usability Testing
Advanced Testing Practices:
# Production Testing Commands
npm run test:ci # Full CI test suite
npm run test:coverage # Coverage reporting
npm run test:e2e # Automated E2E tests
# Performance testing
npm run test:performance:load # Load testing
npm run test:performance:stress # Stress testing
# Security scanning
npm run test:security:scan # Vulnerability scanning
npm run test:security:audit # Security audit
# Accessibility
npm run test:accessibility # WCAG compliance
# Compatibility
npm run test:compatibility # Cross-browser testing
# Deployment validation
npm run test:smoke:production # Production smoke tests
npm run test:canary # Canary deployment tests
Production Testing Strategy:
──────────────────────────────
Quality Gates & Requirements:
✅ Unit Testing:
- Coverage: 92% (target > 85%)
- Tests: 2,847 passing
- Execution time: 42 seconds
✅ Integration Testing:
- Test Scenarios: 324
- External Services: 8 integrated
- Data Consistency: Verified
✅ E2E Automation:
- Critical Paths: 18 automated workflows
- Cross-browser: Chrome, Firefox, Safari, Edge
- Mobile: iOS & Android responsive
✅ Performance:
- Load Capacity: 10,000 concurrent users
- Response Time: < 500ms (95th percentile)
- Uptime Target: 99.95% SLA
✅ Security:
- Vulnerabilities: 0 critical, 2 medium
- Penetration Test: Last completed 30 days ago
- Compliance: GDPR, PCI-DSS Level 4
✅ Accessibility:
- WCAG 2.1 AA: 94% compliant
- Screen Readers: NVDA, JAWS, VoiceOver tested
- Keyboard Navigation: Fully accessible
Monitoring & Observability:
- Application Performance Monitoring: Configured
- Error Tracking: Real-time alerts
- User Analytics: Feature usage tracking
Risk Mitigation:
- Canary Deployments: 5% traffic initially
- Feature Flags: Gradual rollout capability
- Rollback Procedure: Tested quarterly
- Disaster Recovery: RTO 4 hours, RPO 15 minutes
Recommendation:
- All quality gates met for production release
- Monitor performance metrics during peak hours
- Schedule next penetration test in 90 days