소스 정보
- 저장소
- wojons/skills
- 최근 소스 활동
- 2026년 4월 1일 15:16
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/wojons/skills --skill test-planning명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | test-planning |
| description | Create comprehensive test plans considering all test types and dependencies |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Create comprehensive test plans considering all test types, dependencies, risks, and project constraints to ensure effective quality assurance.
Use this skill when:
Test strategy development:
Resource planning:
Risk-based planning:
Integration planning:
# Generate test plans
npm run test:plan:generate # Generate comprehensive test plan
npm run test:plan:strategy # Create test strategy document
npm run test:plan:estimate # Estimate testing effort
# Feature-specific planning
npm run test:plan:feature -- "user-authentication"
npm run test:plan:release -- "v2.1.0"
# Context-aware planning
npm run test:plan -- --context mvp --type saas
npm run test:plan -- --context production --type enterprise
# Integration with project management
npm run test:plan:export -- --format jira # Jira import format
npm run test:plan:export -- --format csv # CSV for spreadsheets
npm run test:plan:export -- --format markdown # Markdown documentation
# Risk-based planning
npm run test:plan:risks # Risk assessment and planning
npm run test:plan:coverage # Test coverage planning
Comprehensive Test Plan
──────────────────────────────
Project: E-Commerce Platform v2.1
Stage: Beta → Production Release
Planning Date: 2024-03-15
Test Objectives:
- Validate new checkout flow functionality
- Ensure backward compatibility with existing features
- Meet performance SLAs for peak traffic
- Maintain security compliance (PCI-DSS)
- Provide confidence for production release
Test Scope:
Included:
- New checkout API and UI
- Payment gateway integration updates
- Order processing enhancements
- User notification system
Excluded:
- Legacy admin panel (separate release)
- Mobile app updates (different team)
- Third-party analytics integration
Test Approach:
Test Pyramid Implementation:
- Unit Tests: 80% coverage on new code (estimated: 250 tests)
- Integration Tests: API and database integration (estimated: 75 tests)
- E2E Tests: Critical user journeys (estimated: 25 scenarios)
Specialized Testing:
- Performance: Load testing with 2000 concurrent users
- Security: PCI-DSS compliance validation
- Accessibility: WCAG 2.1 AA compliance
- Compatibility: Chrome, Firefox, Safari, mobile browsers
Test Schedule:
Week 1-2: Development & Unit Testing
Week 3: Integration Testing & API Validation
Week 4: E2E Testing & User Acceptance
Week 5: Performance & Security Testing
Week 6: Final Validation & Production Readiness
Resource Allocation:
- Developers: 3 (unit & integration tests)
- QA Engineers: 2 (E2E & exploratory testing)
- Performance Engineer: 1 (load testing)
- Security Specialist: 1 (compliance validation)
- Environments: Dev, CI, Staging, Performance Lab
Test Environment Requirements:
- Staging environment matching production configuration
- Test database with production-like data volume
- Payment gateway sandbox accounts
- Load testing infrastructure
- Security scanning tools
Quality Gates:
1. All unit tests pass (CI gate)
2. Integration tests 100% pass (CI gate)
3. E2E critical paths 100% pass (staging gate)
4. Performance SLAs met (performance gate)
5. No critical security vulnerabilities (security gate)
6. User acceptance sign-off (UAT gate)
Risk Assessment:
High Risk:
- Payment processing integration (mitigation: extended sandbox testing)
- Database migration (mitigation: rollback testing)
Medium Risk:
- Checkout UI changes (mitigation: extensive E2E testing)
- Performance under load (mitigation: progressive load testing)
Low Risk:
- Notification system updates (mitigation: smoke testing)
Dependencies:
- Development completion by Week 2
- Staging environment availability
- Test data preparation
- Third-party service sandbox access
- Performance testing window (off-peak hours)
Success Metrics:
- Defect detection rate > 90%
- Test automation coverage > 70%
- Mean time to defect resolution < 8 hours
- Zero critical defects in production first week
Contingency Plans:
- Schedule buffer: 1 week for unexpected issues
- Rollback procedure documented and tested
- Feature flags for gradual rollout
- Monitoring plan for production release
Deliverables:
- Test strategy document
- Test cases and automation scripts
- Test execution reports
- Defect tracking and resolution
- Release readiness assessment
- Lessons learned document