Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

103 changes: 0 additions & 103 deletions v3/@claude-flow/cli/.claude/commands/claude-flow-help.md

This file was deleted.

103 changes: 103 additions & 0 deletions v3/@claude-flow/cli/.claude/commands/ruflo-help.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
---
name: ruflo-help
description: Show Claude-Flow commands and usage
---

# Claude-Flow Commands

## 🌊 Claude-Flow: Agent Orchestration Platform

Claude-Flow is the ultimate multi-terminal orchestration platform that revolutionizes how you work with Claude Code.

## Core Commands

### 🚀 System Management
- `./ruflo start` - Start orchestration system
- `./ruflo start --ui` - Start with interactive process management UI
- `./ruflo status` - Check system status
- `./ruflo monitor` - Real-time monitoring
- `./ruflo stop` - Stop orchestration

### 🤖 Agent Management
- `./ruflo agent spawn <type>` - Create new agent
- `./ruflo agent list` - List active agents
- `./ruflo agent info <id>` - Agent details
- `./ruflo agent terminate <id>` - Stop agent

### 📋 Task Management
- `./ruflo task create <type> "description"` - Create task
- `./ruflo task list` - List all tasks
- `./ruflo task status <id>` - Task status
- `./ruflo task cancel <id>` - Cancel task
- `./ruflo task workflow <file>` - Execute workflow

### 🧠 Memory Operations
- `./ruflo memory store "key" "value"` - Store data
- `./ruflo memory query "search"` - Search memory
- `./ruflo memory stats` - Memory statistics
- `./ruflo memory export <file>` - Export memory
- `./ruflo memory import <file>` - Import memory

### ⚡ SPARC Development
- `./ruflo sparc "task"` - Run SPARC orchestrator
- `./ruflo sparc modes` - List all 17+ SPARC modes
- `./ruflo sparc run <mode> "task"` - Run specific mode
- `./ruflo sparc tdd "feature"` - TDD workflow
- `./ruflo sparc info <mode>` - Mode details

### 🐝 Swarm Coordination
- `./ruflo swarm "task" --strategy <type>` - Start swarm
- `./ruflo swarm "task" --background` - Long-running swarm
- `./ruflo swarm "task" --monitor` - With monitoring
- `./ruflo swarm "task" --ui` - Interactive UI
- `./ruflo swarm "task" --distributed` - Distributed coordination

### 🌍 MCP Integration
- `./ruflo mcp status` - MCP server status
- `./ruflo mcp tools` - List available tools
- `./ruflo mcp config` - Show configuration
- `./ruflo mcp logs` - View MCP logs

### 🤖 Claude Integration
- `./ruflo claude spawn "task"` - Spawn Claude with enhanced guidance
- `./ruflo claude batch <file>` - Execute workflow configuration

## 🌟 Quick Examples

### Initialize with SPARC:
```bash
npx -y claude-flow@latest init --sparc
```

### Start a development swarm:
```bash
./ruflo swarm "Build REST API" --strategy development --monitor --review
```

### Run TDD workflow:
```bash
./ruflo sparc tdd "user authentication"
```

### Store project context:
```bash
./ruflo memory store "project_requirements" "e-commerce platform specs" --namespace project
```

### Spawn specialized agents:
```bash
./ruflo agent spawn researcher --name "Senior Researcher" --priority 8
./ruflo agent spawn developer --name "Lead Developer" --priority 9
```

## 🎯 Best Practices
- Use `./claude-flow` instead of `npx claude-flow` after initialization
- Store important context in memory for cross-session persistence
- Use swarm mode for complex tasks requiring multiple agents
- Enable monitoring for real-time progress tracking
- Use background mode for tasks > 30 minutes

## 📚 Resources
- Documentation: https://github.com/ruvnet/claude-code-flow/docs
- Examples: https://github.com/ruvnet/claude-code-flow/examples
- Issues: https://github.com/ruvnet/claude-code-flow/issues
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: claude-flow-memory
name: ruflo-memory
description: Interact with Claude-Flow memory system
---

Expand All @@ -10,49 +10,49 @@ The memory system provides persistent storage for cross-session and cross-agent
## Store Information
```bash
# Store with default namespace
./claude-flow memory store "key" "value"
./ruflo memory store "key" "value"

# Store with specific namespace
./claude-flow memory store "architecture_decisions" "microservices with API gateway" --namespace arch
./ruflo memory store "architecture_decisions" "microservices with API gateway" --namespace arch
```

## Query Memory
```bash
# Search across all namespaces
./claude-flow memory query "authentication"
./ruflo memory query "authentication"

# Search with filters
./claude-flow memory query "API design" --namespace arch --limit 10
./ruflo memory query "API design" --namespace arch --limit 10
```

## Memory Statistics
```bash
# Show overall statistics
./claude-flow memory stats
./ruflo memory stats

# Show namespace-specific stats
./claude-flow memory stats --namespace project
./ruflo memory stats --namespace project
```

## Export/Import
```bash
# Export all memory
./claude-flow memory export full-backup.json
./ruflo memory export full-backup.json

# Export specific namespace
./claude-flow memory export project-backup.json --namespace project
./ruflo memory export project-backup.json --namespace project

# Import memory
./claude-flow memory import backup.json
./ruflo memory import backup.json
```

## Cleanup Operations
```bash
# Clean entries older than 30 days
./claude-flow memory cleanup --days 30
./ruflo memory cleanup --days 30

# Clean specific namespace
./claude-flow memory cleanup --namespace temp --days 7
./ruflo memory cleanup --namespace temp --days 7
```

## 🗂️ Namespaces
Expand Down Expand Up @@ -90,18 +90,18 @@ The memory system provides persistent storage for cross-session and cross-agent

### Store SPARC context:
```bash
./claude-flow memory store "spec_auth_requirements" "OAuth2 + JWT with refresh tokens" --namespace spec
./claude-flow memory store "arch_api_design" "RESTful microservices with GraphQL gateway" --namespace arch
./claude-flow memory store "test_coverage_auth" "95% coverage, all tests passing" --namespace test
./ruflo memory store "spec_auth_requirements" "OAuth2 + JWT with refresh tokens" --namespace spec
./ruflo memory store "arch_api_design" "RESTful microservices with GraphQL gateway" --namespace arch
./ruflo memory store "test_coverage_auth" "95% coverage, all tests passing" --namespace test
```

### Query project decisions:
```bash
./claude-flow memory query "authentication" --namespace arch --limit 5
./claude-flow memory query "test results" --namespace test
./ruflo memory query "authentication" --namespace arch --limit 5
./ruflo memory query "test results" --namespace test
```

### Backup project memory:
```bash
./claude-flow memory export project-$(date +%Y%m%d).json --namespace project
./ruflo memory export project-$(date +%Y%m%d).json --namespace project
```
Loading