소스 정보
- 저장소
- 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-orchestrator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | test-orchestrator |
| description | Orchestrate and coordinate different test types in proper order |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Orchestrate and coordinate different test types in proper execution order based on dependencies, speed, and reliability.
Use this skill when:
Test execution orchestration:
Dependency management:
Resource optimization:
Integration with development workflow:
# Full test orchestration pipeline
npm run test:orchestrate:full # Complete test orchestration
# Development workflow orchestration
npm run test:orchestrate:dev # Developer local testing
npm run test:orchestrate:commit # Pre-commit validation
npm run test:orchestrate:pr # Pull request validation
# Release orchestration
npm run test:orchestrate:release # Release candidate testing
npm run test:orchestrate:deploy # Deployment validation
# Environment-specific orchestration
npm run test:orchestrate:ci # CI pipeline orchestration
npm run test:orchestrate:staging # Staging environment testing
npm run test:orchestrate:production # Production testing
# Test type coordination
npm run test:orchestrate -- --include unit,integration,e2e
npm run test:orchestrate -- --exclude performance,chaos
npm run test:orchestrate -- --parallel integration,e2e
Test Orchestration Results:
──────────────────────────────
Orchestration Plan: Release Candidate Validation
Environment: Staging
Total Test Suites: 8
Estimated Duration: 25 minutes
Execution Plan:
1. ✅ Environment Setup (2 minutes)
- Deploy release candidate
- Configure test environment
- Load test data
2. ✅ Smoke Tests (1 minute) [PREREQUISITE]
- Application health checks
- Database connectivity
- External service availability
3. ✅ Unit Tests (3 minutes) [PARALLEL GROUP A]
- 1,247 tests across 42 modules
- Fast feedback, high confidence
4. ✅ Integration Tests (5 minutes) [PARALLEL GROUP A]
- 324 API integration tests
- Database interaction tests
- External service integration
5. ✅ E2E Tests (8 minutes) [SEQUENTIAL - depends on 3,4]
- 45 critical user workflows
- Cross-browser validation (Chrome, Firefox)
- Mobile responsive testing
6. ✅ Performance Tests (4 minutes) [SEQUENTIAL - depends on 5]
- Load testing: 1000 concurrent users
- Response time validation
- Resource utilization monitoring
7. ✅ Security Tests (2 minutes) [PARALLEL GROUP B]
- Vulnerability scanning
- Authentication testing
- Authorization validation
8. ✅ Final Validation (1 minute)
- Test result aggregation
- Quality gate evaluation
- Deployment readiness assessment
Dependency Graph:
smoke → unit ───┐
smoke → integration ─┐
unit → e2e ────┤
integration → e2e ───┼→ performance
e2e → security ─┐
└→ final
Resource Allocation:
- Parallel Group A (unit, integration): 4 CPU cores
- Parallel Group B (security): 2 CPU cores
- Sequential (e2e, performance): 8 CPU cores
- Memory: 16GB allocated
Quality Gates:
- All smoke tests must pass: ✅
- Unit test coverage > 80%: ✅ (92%)
- Integration tests 100% pass: ✅
- E2E critical paths 100% pass: ✅
- Performance SLA met: ✅
- No critical security issues: ✅
Orchestration Outcome: ✅ All quality gates passed
Recommendation: Proceed with production deployment