ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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