claudegoodies
Command

testing

From ruvnet

Comprehensive testing through distributed execution.

Install

/testing

Facts

Repository
ruvnet/ruflo
Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this command runs.

# Testing Swarm Strategy

## Purpose
Comprehensive testing through distributed execution.

## Activation

### Using MCP Tools
```javascript
// Initialize testing swarm
mcp__claude-flow__swarm_init({
  "topology": "star",
  "maxAgents": 7,
  "strategy": "parallel"
})

// Orchestrate testing task
mcp__claude-flow__task_orchestrate({
  "task": "test application",
  "strategy": "parallel",
  "priority": "high"
})
```

### Using CLI (Fallback)
`npx claude-flow swarm "test application" --strategy testing`

## Agent Roles

### Agent Spawning with MCP
```javascript
// Spawn testing agents
mcp__claude-flow__agent_spawn({
  "type": "tester",
  "name": "Unit Tester",
  "capabilities": ["unit-testing", "mocking", "coverage"]
})

mcp__claude-flow__agent_spawn({
  "type": "tester",
  "name": "Integration Tester",
  "capabilities": ["integration", "api-testing", "contract-testing"]
})

mcp__claude-flow__agent_spawn({
  "type": "tester",
  "name": "E2E Tester",
  "capabilities": ["e2e", "ui-testing", "user-flows"]
})

mcp__claude-flow__agent_spawn({
  "type": "tester",
  "name": "Performance Tester",
  "capabilities": ["load-testing", "stress-testing", "benchmarking"]
})

mcp__claude-flow__agent_spawn({
  "type": "monitor",
  "name": "Security Tester",
  "capabilities": ["security-testing", "penetration-testing", "vulnerability-scanning"]
})
```

## Test Coverage

### Coverage Analysis
```java
View full source on GitHub →

Other slash commands