claudegoodies
Command

commands

From ruvnet

Complete reference for all pair programming session commands.

Install

/commands

Facts

Repository
ruvnet/ruflo
Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this command runs.

# Pair Programming Commands Reference

Complete reference for all pair programming session commands.

## Session Control Commands

### /start
Start a new pair programming session.
```
/start [--mode <mode>] [--agent <agent>]
```

### /end
End the current session.
```
/end [--save] [--report]
```

### /pause
Pause the current session.
```
/pause [--reason <reason>]
```

### /resume
Resume a paused session.
```
/resume
```

### /status
Show current session status.
```
/status [--verbose]
```

### /switch
Switch driver/navigator roles.
```
/switch [--immediate]
```

## Code Commands

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

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

### /implement
Request implementation (navigator mode).
```
/implement <description>
```

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

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

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

### /comment
Add inline comments.
```
/comment [--verbose]
```

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

## Testing Commands

### /test
Run test suite.
```
/test [--watch] [--covera
View full source on GitHub →

Other slash commands