From test-orchestrator
Orchestrates test execution with dependency graphs, parallel runs, and smart selection based on code changes. Generates test-orchestration.config.js and executes optimized test plans.
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)
npx claudepluginhub danielmiessler/claude-code-plugins-plus --plugin test-orchestrator25plugins reuse this command
First indexed Dec 31, 2025
Showing the 6 earliest of 25 plugins
/orchestrateOrchestrates test execution with dependency graphs, parallel runs, and smart selection based on code changes. Generates test-orchestration.config.js and executes optimized test plans.
/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 (with real services via testcontainers/docker-compose), and Playwright E2E — with automated failure healing and coverage gap analysis.
/aqe-executeExecutes test suites with parallel orchestration, retry logic, and real-time reporting. Supports framework auto-detection, coverage collection, watch mode, and multiple reporter formats.
/testDiscovers and runs unit, integration, or e2e tests with coverage analysis, failure diagnostics, and quality reporting. Supports watch mode and Playwright-based browser testing.
/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.