Pair Programming

AI-powered pair programming with intelligent role switching and quality control

✨ The solution you've been looking for

Verified
Tested and verified by our team
11981 Stars

AI-assisted pair programming with multiple modes (driver/navigator/switch), real-time verification, quality monitoring, and comprehensive testing. Supports TDD, debugging, refactoring, and learning sessions. Features automatic role switching, continuous code review, security scanning, and performance optimization with truth-score verification.

pair-programming code-collaboration tdd code-review ai-assistant testing refactoring debugging
Repository

See It In Action

Interactive preview & real-world examples

Live Demo
Skill Demo Animation

AI Conversation Simulator

See how users interact with this skill

User Prompt

claude-flow pair --start --mode tdd --test-first --coverage 90

Skill Processing

Analyzing request...

Agent Response

Red-green-refactor cycles with automated test generation, coverage tracking, and quality verification

Quick Start (3 Steps)

Get up and running in minutes

1

Install

claude-code skill install pair-programming

claude-code skill install pair-programming
2

Config

3

First Trigger

@pair-programming help

Commands

CommandDescriptionRequired Args
@pair-programming test-driven-development-sessionBuild features using TDD methodology with AI assistance for test generation and implementationNone
@pair-programming legacy-code-refactoringModernize legacy codebases with intelligent suggestions and safety verificationNone
@pair-programming debugging-and-performance-optimizationIdentify and fix bugs while optimizing performance with expert AI guidanceNone

Typical Use Cases

Test-Driven Development Session

Build features using TDD methodology with AI assistance for test generation and implementation

Legacy Code Refactoring

Modernize legacy codebases with intelligent suggestions and safety verification

Debugging and Performance Optimization

Identify and fix bugs while optimizing performance with expert AI guidance

Overview

Pair Programming

Collaborative AI pair programming with intelligent role management, real-time quality monitoring, and comprehensive development workflows.

What This Skill Does

This skill provides professional pair programming capabilities with AI assistance, supporting multiple collaboration modes, continuous verification, and integrated testing. It manages driver/navigator roles, performs real-time code review, tracks quality metrics, and ensures high standards through truth-score verification.

Key Capabilities:

  • Multiple Modes: Driver, Navigator, Switch, TDD, Review, Mentor, Debug
  • Real-Time Verification: Automatic quality scoring with rollback on failures
  • Role Management: Seamless switching between driver/navigator roles
  • Testing Integration: Auto-generate tests, track coverage, continuous testing
  • Code Review: Security scanning, performance analysis, best practice enforcement
  • Session Persistence: Auto-save, recovery, export, and sharing

Prerequisites

Required:

  • Claude Flow CLI installed (npm install -g claude-flow@alpha)
  • Git repository (optional but recommended)

Recommended:

  • Testing framework (Jest, pytest, etc.)
  • Linter configured (ESLint, pylint, etc.)
  • Code formatter (Prettier, Black, etc.)

Quick Start

Basic Session

1# Start simple pair programming
2claude-flow pair --start

TDD Session

1# Test-driven development
2claude-flow pair --start \
3  --mode tdd \
4  --test-first \
5  --coverage 90

Complete Guide

Session Control Commands

Starting Sessions

 1# Basic start
 2claude-flow pair --start
 3
 4# Expert refactoring session
 5claude-flow pair --start \
 6  --agent senior-dev \
 7  --focus refactor \
 8  --verify \
 9  --threshold 0.98
10
11# Debugging session
12claude-flow pair --start \
13  --agent debugger-expert \
14  --focus debug \
15  --review
16
17# Learning session
18claude-flow pair --start \
19  --mode mentor \
20  --pace slow \
21  --examples

Session Management

 1# Check status
 2claude-flow pair --status
 3
 4# View history
 5claude-flow pair --history
 6
 7# Pause session
 8/pause [--reason <reason>]
 9
10# Resume session
11/resume
12
13# End session
14claude-flow pair --end [--save] [--report]

Available Modes

Driver Mode

You write code while AI provides guidance.

1claude-flow pair --start --mode driver

Your Responsibilities:

  • Write actual code
  • Implement solutions
  • Make immediate decisions
  • Handle syntax and structure

AI Navigator:

  • Strategic guidance
  • Spot potential issues
  • Suggest improvements
  • Real-time review
  • Track overall direction

Best For:

  • Learning new patterns
  • Implementing familiar features
  • Quick iterations
  • Hands-on debugging

Commands:

/suggest     - Get implementation suggestions
/review      - Request code review
/explain     - Ask for explanations
/optimize    - Request optimization ideas
/patterns    - Get pattern recommendations

AI writes code while you provide direction.

1claude-flow pair --start --mode navigator

Your Responsibilities:

  • Provide high-level direction
  • Review generated code
  • Make architectural decisions
  • Ensure business requirements

AI Driver:

  • Write implementation code
  • Handle syntax details
  • Implement your guidance
  • Manage boilerplate
  • Execute refactoring

Best For:

  • Rapid prototyping
  • Boilerplate generation
  • Learning from AI patterns
  • Exploring solutions

Commands:

/implement   - Direct implementation
/refactor    - Request refactoring
/test        - Generate tests
/document    - Add documentation
/alternate   - See alternative approaches

Switch Mode

Automatically alternates roles at intervals.

1# Default 10-minute intervals
2claude-flow pair --start --mode switch
3
4# 5-minute intervals (rapid)
5claude-flow pair --start --mode switch --interval 5m
6
7# 15-minute intervals (deep focus)
8claude-flow pair --start --mode switch --interval 15m

Handoff Process:

  1. 30-second warning before switch
  2. Current driver completes thought
  3. Context summary generated
  4. Roles swap smoothly
  5. New driver continues

Best For:

  • Balanced collaboration
  • Knowledge sharing
  • Complex features
  • Extended sessions

Specialized Modes

TDD Mode - Test-Driven Development:

1claude-flow pair --start \
2  --mode tdd \
3  --test-first \
4  --coverage 100

Workflow: Write failing test → Implement → Refactor → Repeat

Review Mode - Continuous code review:

1claude-flow pair --start \
2  --mode review \
3  --strict \
4  --security

Features: Real-time feedback, security scanning, performance analysis

Mentor Mode - Learning-focused:

1claude-flow pair --start \
2  --mode mentor \
3  --explain-all \
4  --pace slow

Features: Detailed explanations, step-by-step guidance, pattern teaching

Debug Mode - Problem-solving:

1claude-flow pair --start \
2  --mode debug \
3  --verbose \
4  --trace

Features: Issue identification, root cause analysis, fix suggestions

In-Session Commands

Code Commands

/explain [--level basic|detailed|expert]
  Explain the current code or selection

/suggest [--type refactor|optimize|security|style]
  Get improvement suggestions

/implement <description>
  Request implementation (navigator mode)

/refactor [--pattern <pattern>] [--scope function|file|module]
  Refactor selected code

/optimize [--target speed|memory|both]
  Optimize code for performance

/document [--format jsdoc|markdown|inline]
  Add documentation to code

/comment [--verbose]
  Add inline comments

/pattern <pattern-name> [--example]
  Apply a design pattern

Testing Commands

/test [--watch] [--coverage] [--only <pattern>]
  Run test suite

/test-gen [--type unit|integration|e2e]
  Generate tests for current code

/coverage [--report html|json|terminal]
  Check test coverage

/mock <target> [--realistic]
  Generate mock data or functions

/test-watch [--on-save]
  Enable test watching

/snapshot [--update]
  Create test snapshots

Review Commands

/review [--scope current|file|changes] [--strict]
  Perform code review

/security [--deep] [--fix]
  Security analysis

/perf [--profile] [--suggestions]
  Performance analysis

/quality [--detailed]
  Check code quality metrics

/lint [--fix] [--config <config>]
  Run linters

/complexity [--threshold <value>]
  Analyze code complexity
/goto <file>[:line[:column]]
  Navigate to file or location

/find <pattern> [--regex] [--case-sensitive]
  Search in project

/recent [--limit <n>]
  Show recent files

/bookmark [add|list|goto|remove] [<name>]
  Manage bookmarks

/history [--limit <n>] [--filter <pattern>]
  Show command history

/tree [--depth <n>] [--filter <pattern>]
  Show project structure

Git Commands

/diff [--staged] [--file <file>]
  Show git diff

/commit [--message <msg>] [--amend]
  Commit with verification

/branch [create|switch|delete|list] [<name>]
  Branch operations

/stash [save|pop|list|apply] [<message>]
  Stash operations

/log [--oneline] [--limit <n>]
  View git log

/blame [<file>]
  Show git blame

AI Partner Commands

/agent [switch|info|config] [<agent-name>]
  Manage AI agent

/teach <preference>
  Teach the AI your preferences

/feedback [positive|negative] <message>
  Provide feedback to AI

/personality [professional|friendly|concise|verbose]
  Adjust AI personality

/expertise [add|remove|list] [<domain>]
  Set AI expertise focus

Metrics Commands

/metrics [--period today|session|week|all]
  Show session metrics

/score [--breakdown]
  Show quality scores

/productivity [--chart]
  Show productivity metrics

/leaderboard [--personal|team]
  Show improvement leaderboard

Role & Mode Commands

/switch [--immediate]
  Switch driver/navigator roles

/mode <type>
  Change mode (driver|navigator|switch|tdd|review|mentor|debug)

/role
  Show current role

/handoff
  Prepare role handoff

Command Shortcuts

AliasFull Command
/s/suggest
/e/explain
/t/test
/r/review
/c/commit
/g/goto
/f/find
/h/help
/sw/switch
/st/status

Configuration

Basic Configuration

Create .claude-flow/pair-config.json:

1{
2  "pair": {
3    "enabled": true,
4    "defaultMode": "switch",
5    "defaultAgent": "auto",
6    "autoStart": false,
7    "theme": "professional"
8  }
9}

Complete Configuration

 1{
 2  "pair": {
 3    "general": {
 4      "enabled": true,
 5      "defaultMode": "switch",
 6      "defaultAgent": "senior-dev",
 7      "language": "javascript",
 8      "timezone": "UTC"
 9    },
10
11    "modes": {
12      "driver": {
13        "enabled": true,
14        "suggestions": true,
15        "realTimeReview": true,
16        "autoComplete": false
17      },
18      "navigator": {
19        "enabled": true,
20        "codeGeneration": true,
21        "explanations": true,
22        "alternatives": true
23      },
24      "switch": {
25        "enabled": true,
26        "interval": "10m",
27        "warning": "30s",
28        "autoSwitch": true,
29        "pauseOnIdle": true
30      }
31    },
32
33    "verification": {
34      "enabled": true,
35      "threshold": 0.95,
36      "autoRollback": true,
37      "preCommitCheck": true,
38      "continuousMonitoring": true,
39      "blockOnFailure": true
40    },
41
42    "testing": {
43      "enabled": true,
44      "autoRun": true,
45      "framework": "jest",
46      "onSave": true,
47      "coverage": {
48        "enabled": true,
49        "minimum": 80,
50        "enforce": true,
51        "reportFormat": "html"
52      }
53    },
54
55    "review": {
56      "enabled": true,
57      "continuous": true,
58      "preCommit": true,
59      "security": true,
60      "performance": true,
61      "style": true,
62      "complexity": {
63        "maxComplexity": 10,
64        "maxDepth": 4,
65        "maxLines": 100
66      }
67    },
68
69    "git": {
70      "enabled": true,
71      "autoCommit": false,
72      "commitTemplate": "feat: {message}",
73      "signCommits": false,
74      "pushOnEnd": false,
75      "branchProtection": true
76    },
77
78    "session": {
79      "autoSave": true,
80      "saveInterval": "5m",
81      "maxDuration": "4h",
82      "idleTimeout": "15m",
83      "breakReminder": "45m",
84      "metricsInterval": "1m"
85    },
86
87    "ai": {
88      "model": "advanced",
89      "temperature": 0.7,
90      "maxTokens": 4000,
91      "personality": "professional",
92      "expertise": ["backend", "testing", "security"],
93      "learningEnabled": true
94    }
95  }
96}

Built-in Agents

 1{
 2  "agents": {
 3    "senior-dev": {
 4      "expertise": ["architecture", "patterns", "optimization"],
 5      "style": "thorough",
 6      "reviewLevel": "strict"
 7    },
 8    "tdd-specialist": {
 9      "expertise": ["testing", "mocks", "coverage"],
10      "style": "test-first",
11      "reviewLevel": "comprehensive"
12    },
13    "debugger-expert": {
14      "expertise": ["debugging", "profiling", "tracing"],
15      "style": "analytical",
16      "reviewLevel": "focused"
17    },
18    "junior-dev": {
19      "expertise": ["learning", "basics", "documentation"],
20      "style": "questioning",
21      "reviewLevel": "educational"
22    }
23  }
24}

CLI Configuration

 1# Set configuration
 2claude-flow pair config set defaultMode switch
 3claude-flow pair config set verification.threshold 0.98
 4
 5# Get configuration
 6claude-flow pair config get
 7claude-flow pair config get defaultMode
 8
 9# Export/Import
10claude-flow pair config export > config.json
11claude-flow pair config import config.json
12
13# Reset
14claude-flow pair config reset

Profile Management

Create reusable profiles:

 1# Create profile
 2claude-flow pair profile create refactoring \
 3  --mode driver \
 4  --verify true \
 5  --threshold 0.98 \
 6  --focus refactor
 7
 8# Use profile
 9claude-flow pair --start --profile refactoring
10
11# List profiles
12claude-flow pair profile list

Profile configuration:

 1{
 2  "profiles": {
 3    "refactoring": {
 4      "mode": "driver",
 5      "verification": {
 6        "enabled": true,
 7        "threshold": 0.98
 8      },
 9      "focus": "refactor"
10    },
11    "debugging": {
12      "mode": "navigator",
13      "agent": "debugger-expert",
14      "trace": true,
15      "verbose": true
16    },
17    "learning": {
18      "mode": "mentor",
19      "pace": "slow",
20      "explanations": "detailed",
21      "examples": true
22    }
23  }
24}

Real-World Examples

Example 1: Feature Implementation

Implementing user authentication with JWT tokens:

1# Session setup
2claude-flow pair --start \
3  --mode switch \
4  --agent senior-dev \
5  --focus implement \
6  --verify \
7  --test

Session Flow:

👥 Starting pair programming for authentication feature...

[DRIVER: You - 10 minutes]
/explain JWT authentication flow
> AI explains JWT concepts and best practices

/suggest implementation approach
> AI suggests using middleware pattern with refresh tokens

# You write the basic auth middleware structure

[SWITCH TO NAVIGATOR]

[NAVIGATOR: AI - 10 minutes]
/implement JWT token generation with refresh tokens
> AI generates secure token implementation

/test-gen
> AI creates comprehensive test suite

[SWITCH TO DRIVER]

[DRIVER: You - 10 minutes]
# You refine the implementation
/review --security
> AI performs security review, suggests improvements

/commit --message "feat: JWT authentication with refresh tokens"
✅ Truth Score: 0.98 - Committed successfully

Example 2: Bug Fixing

Debugging a memory leak in Node.js:

1# Session setup
2claude-flow pair --start \
3  --mode navigator \
4  --agent debugger-expert \
5  --focus debug \
6  --trace

Session Flow:

👥 Starting debugging session...

/status
> Analyzing application for memory issues...

/perf --profile
> Memory usage growing: 150MB → 450MB over 10 minutes

/find "new EventEmitter" --regex
> Found 3 instances of EventEmitter creation

/inspect eventEmitters --deep
> Discovering listeners not being removed

/suggest fix for memory leak
> AI suggests: "Add removeListener in cleanup functions"

/implement cleanup functions for all event emitters
> AI generates proper cleanup code

/test
> Memory stable at 150MB ✅

/commit --message "fix: memory leak in event emitters"

Example 3: TDD Session

Building shopping cart with test-driven development:

1# Session setup
2claude-flow pair --start \
3  --mode tdd \
4  --agent tdd-specialist \
5  --test-first

Session Flow:

👥 TDD Session: Shopping Cart Feature

[RED PHASE]
/test-gen "add item to cart"
> AI writes failing test:
  ✗ should add item to cart
  ✗ should update quantity for existing item
  ✗ should calculate total price

[GREEN PHASE]
/implement minimal cart functionality
> You write just enough code to pass tests

/test
> Tests passing: 3/3 ✅

[REFACTOR PHASE]
/refactor --pattern repository
> AI refactors to repository pattern

/test
> Tests still passing: 3/3 ✅

[NEXT CYCLE]
/test-gen "remove item from cart"
> AI writes new failing tests...

Example 4: Code Refactoring

Modernizing legacy code:

1# Session setup
2claude-flow pair --start \
3  --mode driver \
4  --focus refactor \
5  --verify \
6  --threshold 0.98

Session Flow:

👥 Refactoring Session: Modernizing UserService

/analyze UserService.js
> AI identifies:
  - Callback hell (5 levels deep)
  - No error handling
  - Tight coupling
  - No tests

/suggest refactoring plan
> AI suggests:
  1. Convert callbacks to async/await
  2. Add error boundaries
  3. Extract dependencies
  4. Add unit tests

/test-gen --before-refactor
> AI generates tests for current behavior

/refactor callbacks to async/await
# You refactor with AI guidance

/test
> All tests passing ✅

/review --compare
> AI shows before/after comparison
> Code complexity: 35 → 12
> Truth score: 0.99 ✅

/commit --message "refactor: modernize UserService with async/await"

Example 5: Performance Optimization

Optimizing slow React application:

1# Session setup
2claude-flow pair --start \
3  --mode switch \
4  --agent performance-expert \
5  --focus optimize \
6  --profile

Session Flow:

👥 Performance Optimization Session

/perf --profile
> React DevTools Profiler Results:
  - ProductList: 450ms render
  - CartSummary: 200ms render
  - Unnecessary re-renders: 15

/suggest optimizations for ProductList
> AI suggests:
  1. Add React.memo
  2. Use useMemo for expensive calculations
  3. Implement virtualization for long lists

/implement React.memo and useMemo
# You implement with AI guidance

/perf --profile
> ProductList: 45ms render (90% improvement!) ✅

/implement virtualization with react-window
> AI implements virtual scrolling

/perf --profile
> ProductList: 12ms render (97% improvement!) ✅
> FPS: 60 stable ✅

/commit --message "perf: optimize ProductList with memoization and virtualization"

Example 6: API Development

Building RESTful API with Express:

1# Session setup
2claude-flow pair --start \
3  --mode navigator \
4  --agent backend-expert \
5  --focus implement \
6  --test

Session Flow:

👥 API Development Session

/design REST API for blog platform
> AI designs endpoints:
  POST   /api/posts
  GET    /api/posts
  GET    /api/posts/:id
  PUT    /api/posts/:id
  DELETE /api/posts/:id

/implement CRUD endpoints with validation
> AI implements with Express + Joi validation

/test-gen --integration
> AI generates integration tests

/security --api
> AI adds:
  - Rate limiting
  - Input sanitization
  - JWT authentication
  - CORS configuration

/document --openapi
> AI generates OpenAPI documentation

/test --integration
> All endpoints tested: 15/15 ✅

Session Templates

Quick Start Templates

 1# Refactoring template
 2claude-flow pair --template refactor
 3# Focus: Code improvement
 4# Verification: High (0.98)
 5# Testing: After each change
 6# Review: Continuous
 7
 8# Feature template
 9claude-flow pair --template feature
10# Focus: Implementation
11# Verification: Standard (0.95)
12# Testing: On completion
13# Review: Pre-commit
14
15# Debug template
16claude-flow pair --template debug
17# Focus: Problem solving
18# Verification: Moderate (0.90)
19# Testing: Regression tests
20# Review: Root cause
21
22# Learning template
23claude-flow pair --template learn
24# Mode: Mentor
25# Pace: Slow
26# Explanations: Detailed
27# Examples: Many

Session Management

Session Status

1claude-flow pair --status

Output:

👥 Pair Programming Session
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Session ID: pair_1755021234567
Duration: 45 minutes
Status: Active

Partner: senior-dev
Current Role: DRIVER (you)
Mode: Switch (10m intervals)
Next Switch: in 3 minutes

📊 Metrics:
├── Truth Score: 0.982 ✅
├── Lines Changed: 234
├── Files Modified: 5
├── Tests Added: 12
├── Coverage: 87% ↑3%
└── Commits: 3

🎯 Focus: Implementation
📝 Current File: src/auth/login.js

Session History

1claude-flow pair --history

Output:

📚 Session History
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

1. 2024-01-15 14:30 - 16:45 (2h 15m)
   Partner: expert-coder
   Focus: Refactoring
   Truth Score: 0.975
   Changes: +340 -125 lines

2. 2024-01-14 10:00 - 11:30 (1h 30m)
   Partner: tdd-specialist
   Focus: Testing
   Truth Score: 0.991
   Tests Added: 24

3. 2024-01-13 15:00 - 17:00 (2h)
   Partner: debugger-expert
   Focus: Bug Fixing
   Truth Score: 0.968
   Issues Fixed: 5

Session Persistence

 1# Save session
 2claude-flow pair --save [--name <name>]
 3
 4# Load session
 5claude-flow pair --load <session-id>
 6
 7# Export session
 8claude-flow pair --export <session-id> [--format json|md]
 9
10# Generate report
11claude-flow pair --report <session-id>

Background Sessions

 1# Start in background
 2claude-flow pair --start --background
 3
 4# Monitor background session
 5claude-flow pair --monitor
 6
 7# Attach to background session
 8claude-flow pair --attach <session-id>
 9
10# End background session
11claude-flow pair --end <session-id>

Advanced Features

Custom Commands

Define in configuration:

1{
2  "customCommands": {
3    "tdd": "/test-gen && /test --watch",
4    "full-review": "/lint --fix && /test && /review --strict",
5    "quick-fix": "/suggest --type fix && /implement && /test"
6  }
7}

Use custom commands:

/custom tdd
/custom full-review

Command Chaining

/test && /commit && /push
/lint --fix && /test && /review --strict

Session Recording

1# Start with recording
2claude-flow pair --start --record
3
4# Replay session
5claude-flow pair --replay <session-id>
6
7# Session analytics
8claude-flow pair --analytics <session-id>

Integration Options

With Git:

1claude-flow pair --start --git --auto-commit

With CI/CD:

1claude-flow pair --start --ci --non-interactive

With IDE:

1claude-flow pair --start --ide vscode

Best Practices

Session Practices

  1. Clear Goals - Define session objectives upfront
  2. Appropriate Mode - Choose based on task type
  3. Enable Verification - For critical code paths
  4. Regular Testing - Maintain quality continuously
  5. Session Notes - Document important decisions
  6. Regular Breaks - Take breaks every 45-60 minutes

Code Practices

  1. Test Early - Run tests after each change
  2. Verify Before Commit - Check truth scores
  3. Review Security - Always for sensitive code
  4. Profile Performance - Use /perf for optimization
  5. Save Sessions - For complex work
  6. Learn from AI - Ask questions frequently

Mode Selection

  • Driver Mode: When learning, controlling implementation
  • Navigator Mode: For rapid prototyping, generation
  • Switch Mode: Long sessions, balanced collaboration
  • TDD Mode: Building with tests
  • Review Mode: Quality focus
  • Mentor Mode: Learning priority
  • Debug Mode: Fixing issues

Troubleshooting

Session Won’t Start

  • Check agent availability
  • Verify configuration file syntax
  • Ensure clean workspace
  • Review log files

Session Disconnected

  • Use --recover to restore
  • Check network connection
  • Verify background processes
  • Review auto-save files

Poor Performance

  • Reduce verification threshold
  • Disable continuous testing
  • Check system resources
  • Use lighter AI model

Configuration Issues

  • Validate JSON syntax
  • Check file permissions
  • Review priority order (CLI > env > project > user > global)
  • Run claude-flow pair config validate

Quality Metrics

Truth Score Thresholds

Error:   < 0.90 ❌
Warning: 0.90 - 0.95 ⚠️
Good:    0.95 - 0.98 ✅
Excellent: > 0.98 🌟

Coverage Thresholds

Error:   < 70% ❌
Warning: 70% - 80% ⚠️
Good:    80% - 90% ✅
Excellent: > 90% 🌟

Complexity Thresholds

Error:   > 15 ❌
Warning: 10 - 15 ⚠️
Good:    5 - 10 ✅
Excellent: < 5 🌟

Environment Variables

Override configuration via environment:

1export CLAUDE_PAIR_MODE=driver
2export CLAUDE_PAIR_VERIFY=true
3export CLAUDE_PAIR_THRESHOLD=0.98
4export CLAUDE_PAIR_AGENT=senior-dev
5export CLAUDE_PAIR_AUTO_TEST=true

Command History

Navigate history:

  • ↑/↓ - Navigate through command history
  • Ctrl+R - Search command history
  • !! - Repeat last command
  • !<n> - Run command n from history

Keyboard Shortcuts (Configurable)

Default shortcuts:

1{
2  "shortcuts": {
3    "switch": "ctrl+shift+s",
4    "suggest": "ctrl+space",
5    "review": "ctrl+r",
6    "test": "ctrl+t"
7  }
8}
  • claude-flow pair --help - Show help
  • claude-flow pair config - Manage configuration
  • claude-flow pair profile - Manage profiles
  • claude-flow pair templates - List templates
  • claude-flow pair agents - List available agents

What Users Are Saying

Real feedback from the community

Environment Matrix

Dependencies

Claude Flow CLI (npm install -g claude-flow@alpha)
Git repository (recommended)
Node.js 16+ (for CLI)

Framework Support

Jest ✓ (recommended for testing) ESLint ✓ (recommended for linting) Prettier ✓ (recommended for formatting) React ✓ Express.js ✓ Python testing frameworks ✓

Context Window

Token Usage ~4K tokens per interaction with session persistence

Security & Privacy

Information

Author
ruvnet
Updated
2026-01-30
Category
productivity-tools