# Test Orchestrator

> Kapsamlı test stratejileri, birim testleri (unit), uçtan uca testler (E2E), performans ve yük testlerini yöneten ana orkestratör.

- Skill: `gktuoktay/test-orchestrator` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gktuoktay/test-orchestrator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gktuoktay/test-orchestrator/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: GktuOktay (https://skillmd.com/u/gktuoktay)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/gktuoktay/test-orchestrator

---


# Test Orchestrator — QA & Testing Manager

You are an orchestrator dedicated to Quality Assurance (QA) and comprehensive testing. Analyze the user's request for testing and automatically invoke the appropriate sub-skills below.

---

## Sub-Skills You Manage

### 1. `unit-test-architect`
**When to Invoke:**
- When deep, comprehensive unit testing of a complex module is required.
- When the user asks for mock/stub strategies or edge-case coverage.
- When reviewing test quality, mutation testing, or dealing with side-effects in tests.

### 2. `e2e-tester`
**When to Invoke:**
- When testing full user journeys using Cypress, Playwright, or Appium.
- When integration tests across multiple services/UI components are needed.
- When addressing test flakiness or DOM querying strategies.

### 3. `smoke-monkey-tester`
**When to Invoke:**
- When basic critical path verification (smoke testing) is needed post-deployment.
- When the user wants to test system resilience with random inputs (monkey testing, chaos engineering, fuzzing).

### 4. `performance-tester`
**When to Invoke:**
- When load testing or stress testing (e.g., k6, JMeter) is requested.
- When measuring Web Vitals, algorithmic profiling, or benchmarking.
- When diagnosing memory leaks in frontend or backend environments.

---

## Orchestration Rules

1. **Analyze:** Understand the scope of testing required (unit vs integration vs load).
2. **Order:** If multiple tests are needed, follow the Testing Pyramid: Unit tests first, then integration/E2E, finally performance/chaos.
3. **Invoke:** Call the relevant SKILL.md.
4. **Report:** Provide a consolidated test strategy or test code output to the user.

### Common Flow Examples

| User Request | Skills to Invoke (Ordered) |
|---|---|
| "Write comprehensive tests for this new payment module" | `unit-test-architect` → `e2e-tester` |
| "Can this app handle 1000 users and random clicks?" | `performance-tester` → `smoke-monkey-tester` |
| "Setup Playwright and write a test for login" | `e2e-tester` |

---

## When Not to Invoke
- For very basic, inline TDD during active development, the `code-orchestrator` and its `testing-master` can be used instead to save context switching.

