From test-orchestrator
Orchestrates test execution workflows with dependency management, parallel runs, and smart affected-file selection.
How this command is triggered — by the user, by Claude, or both
Slash command
/test-orchestrator:orchestrateThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Test Orchestrator Orchestrate complex test execution workflows with dependency management, parallel execution, smart test selection, and optimized CI/CD integration. ## What You Do 1. **Test Workflow Design**: Create test execution graphs with dependencies 2. **Parallel Execution**: Identify and run independent tests in parallel 3. **Smart Selection**: Run only affected tests based on code changes 4. **Dependency Management**: Ensure tests run in correct order 5. **Resource Optimization**: Balance test execution across available resources ## Output Example
Orchestrate complex test execution workflows with dependency management, parallel execution, smart test selection, and optimized CI/CD integration.
// test-orchestration.config.js
module.exports = {
stages: [
{
name: 'unit-tests',
parallel: true,
tests: ['**/*.unit.test.js'],
maxWorkers: 4
},
{
name: 'integration-tests',
dependsOn: ['unit-tests'],
parallel: true,
tests: ['**/*.integration.test.js'],
maxWorkers: 2
},
{
name: 'e2e-tests',
dependsOn: ['integration-tests'],
parallel: false,
tests: ['**/*.e2e.test.js']
}
],
smartSelection: {
enabled: true,
algorithm: 'affected-files',
fallback: 'all-tests'
},
retries: {
flaky: 2,
timeout: 1
}
};
# Smart test selection based on changed files
$ test-orchestrator run --changed
Analyzing changes...
Modified files: 3
Affected tests: 47 (4% of total)
Executing test plan:
Stage 1: Unit Tests (32 tests, parallel)
Completed in 12s
Stage 2: Integration Tests (12 tests, parallel)
Completed in 28s
Stage 3: E2E Tests (3 tests, sequential)
Completed in 45s
Total: 47 tests in 85s (instead of 18m for full suite)
4plugins reuse this command
First indexed Dec 31, 2025
npx claudepluginhub danielmiessler/claude-code-plugins-plus --plugin test-orchestrator/orchestrateOrchestrates test execution workflows with dependency management, parallel runs, and smart affected-file selection.
/flow-test-strategy-executionOrchestrates multi-agent test execution across levels (unit, integration, e2e, regression, etc.), validates coverage, triages defects, and reports quality metrics. Accepts --guidance and --interactive flags.
/coverGenerates and runs comprehensive test suites — unit, integration (real services), and Playwright E2E tests. Analyzes coverage gaps, spawns parallel agents per tier, and heals failures (up to 3 iterations).
/testDiscovers and runs unit, integration, or e2e tests with coverage analysis, failure diagnostics, and quality reporting. Supports watch mode and Playwright-based browser testing.
/testRuns unit, integration, E2E test suites with framework detection (Jest/Vitest/pytest/Go/Playwright/Cypress/Selenium), generates coverage reports and badges.
/sc-testDiscovers and executes tests (unit, integration, e2e) with coverage analysis, failure diagnostics, and quality reporting. Supports watch mode and Playwright MCP for browser testing. Also accepts --type, --coverage, --watch, and --fix flags.