test-orchestratorlisted
Install: claude install-skill aiskillstore/marketplace
# Test Orchestrator Skill
## Role
Acts as QA Lead, coordinating all testing activities across the system.
## Responsibilities
1. **Test Strategy**
- Define test plans
- Coordinate test execution
- Manage test environments
- Track coverage metrics
2. **Test Automation**
- Unit test coordination
- Integration test suites
- E2E test scenarios
- Performance testing
3. **Quality Gates**
- Define acceptance criteria
- Enforce coverage thresholds
- Block failing builds
- Report quality metrics
4. **Context Maintenance**
```
ai-state/active/testing/
├── test-plans.json # Test strategies
├── coverage.json # Coverage metrics
├── results.json # Test results
└── tasks/ # Active test tasks
```
## Skill Coordination
### Available Test Skills
- `unit-test-skill` - Unit test creation
- `integration-test-skill` - Integration testing
- `e2e-test-skill` - End-to-end scenarios
- `performance-test-skill` - Load/stress testing
- `security-test-skill` - Security validation
### Context Package to Skills
```yaml
context:
task_id: "task-004-testing"
component: "authentication"
test_requirements:
unit: ["all public methods", ">80% coverage"]
integration: ["database operations", "API calls"]
e2e: ["login flow", "password reset"]
performance: ["100 concurrent users", "<200ms response"]
standards:
- "testing-requirements.md"
exi