/pipeline
Execute predefined pipelines for common development workflows.
$ npx -y skills add ruvnet/agentic-flow --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/pipeline
Context preview
What this command does when you run it.
Execute predefined pipelines for common development workflows.
Command definition
pipeline.mdstream-chain pipeline
Execute predefined pipelines for common development workflows.
Usage
claude-flow stream-chain pipeline <type> [options]
Available Pipelines
analysis
Code analysis and improvement pipeline.
claude-flow stream-chain pipeline analysis
**Steps:** 1. Analyze current directory structure and identify main components 2. Based on analysis, identify potential improvements and issues 3. Generate detailed report with actionable recommendations
refactor
Automated refactoring workflow.
claude-flow stream-chain pipeline refactor
**Steps:** 1. Identify code that could benefit from refactoring 2. Create prioritized refactoring plan with specific changes 3. Provide refactored code examples for top 3 priorities
test
Comprehensive test generation.
claude-flow stream-chain pipeline test
**Steps:** 1. Analyze codebase and identify areas lacking test coverage 2. Design comprehensive test cases for critical functions 3. Generate unit test implementations with assertions
optimize
Performance optimization pipeline.
claude-flow stream-chain pipeline optimize
**Steps:** 1. Profile codebase and identify performance bottlenecks 2. Analyze bottlenecks and suggest optimization strategies 3. Provide optimized implementations for main issues
Options
- `--verbose` - Show detailed execution
- `--timeout <seconds>` - Timeout per step (default: 30)
- `--debug` - Enable debug mode
Examples
Run Analysis Pipeline
claude-flow stream-chain pipeline analysis
Refactor with Extended Timeout
claude-flow stream-chain pipeline refactor --timeout 60
Verbose Test Generation
claude-flow stream-chain pipeline test --verbose
Performance Optimization
claude-flow stream-chain pipeline optimize --debug
Output
Each pipeline generates:
- Step-by-step execution progress
- Success/failure status per step
- Total execution time
- Summary of results
Custom Pipelines
Define custom pipelines in `.claude-flow/config.json`:
{
"streamChain": {
"pipelines": {
"security": {
"name": "Security Audit Pipeline",
"prompts": [
"Scan for security vulnerabilities",
"Prioritize by severity",
"Generate fixes"
]
}
}
}
}Then run:
claude-flow stream-chain pipeline security
Read more
stream-chain pipeline
Execute predefined pipelines for common development workflows.
Usage
claude-flow stream-chain pipeline <type> [options]
Available Pipelines
analysis
Code analysis and improvement pipeline.
claude-flow stream-chain pipeline analysis
**Steps:** 1. Analyze current directory structure and identify main components 2. Based on analysis, identify potential improvements and issues 3. Generate detailed report with actionable recommendations
refactor
Automated refactoring workflow.
claude-flow stream-chain pipeline refactor
**Steps:** 1. Identify code that could benefit from refactoring 2. Create prioritized refactoring plan with specific changes 3. Provide refactored code examples for top 3 priorities
test
Comprehensive test generation.
claude-flow stream-chain pipeline test
**Steps:** 1. Analyze codebase and identify areas lacking test coverage 2. Design comprehensive test cases for critical functions 3. Generate unit test implementations with assertions
optimize
Performance optimization pipeline.
claude-flow stream-chain pipeline optimize
**Steps:** 1. Profile codebase and identify performance bottlenecks 2. Analyze bottlenecks and suggest optimization strategies 3. Provide optimized implementations for main issues
Options
- `--verbose` - Show detailed execution
- `--timeout <seconds>` - Timeout per step (default: 30)
- `--debug` - Enable debug mode
Examples
Run Analysis Pipeline
claude-flow stream-chain pipeline analysis
Refactor with Extended Timeout
claude-flow stream-chain pipeline refactor --timeout 60
Verbose Test Generation
claude-flow stream-chain pipeline test --verbose
Performance Optimization
claude-flow stream-chain pipeline optimize --debug
Output
Each pipeline generates:
- Step-by-step execution progress
- Success/failure status per step
- Total execution time
- Summary of results
Custom Pipelines
Define custom pipelines in `.claude-flow/config.json`:
{
"streamChain": {
"pipelines": {
"security": {
"name": "Security Audit Pipeline",
"prompts": [
"Scan for security vulnerabilities",
"Prioritize by severity",
"Generate fixes"
]
}
}
}
}Then run:
claude-flow stream-chain pipeline security
Production-ready AI agent orchestration with 66 self-learning agents, 213 MCP tools, and autonomous multi-agent swarms.
Repo: ruvnet/agentic-flow
Other commands on agentic-flow.
- /agent-capabilities
Matrix of agent capabilities and their specializations.
Open command - /agent-coordination
Coordination patterns for multi-agent collaboration.
Open command - /agent-spawning
Guide to spawning agents with Claude Code's Task tool.
Open command - /agent-types
Complete guide to all 54 available agent types in Claude Flow.
Open command - /COMMAND_COMPLIANCE_REPORT
Reviewed all command files in `.claude/commands/analysis/` directory to ensure proper usage of: - `mcp__claude-flow__*` tools (preferred) - `npx claude-flow` commands (as fallback) - No direct implementation calls
Open command - /bottleneck-detect
Analyze performance bottlenecks in swarm operations and suggest optimizations.
Open command

