SuperDisco fork: Enterprise-grade AI agent orchestration with WASM-powered ReasoningBank memory and AgentDB vector database (GitHub distribution)
npm install @rdmptv/claude-flow



Transform Claude Code into an enterprise AI orchestration platform
Quick Start ⢠Features ⢠Installation ⢠Documentation ⢠Community
---
> š Fork Notice: This is a fork of the original claude-flow by rUv. Due to extensive code modifications and feature enhancements, this project has been rebranded under the SuperDisco Agents organization.
---
Claude-Flow is an enterprise-grade plugin for Claude Code that adds:
- š¤ 76 Specialized AI Agents across 20 categories
- ā” 150+ Commands for orchestration, GitHub, memory, and automation
- š§ ReasoningBank Memory - Persistent SQLite with semantic search (2-3ms)
- š Swarm Intelligence - Multi-agent coordination with hive-mind patterns
- š GitHub Automation - PR reviews, code analysis, release management
- šØ 25 Natural Language Skills - No commands to memorize
- š§ 110+ MCP Tools - Comprehensive toolkit across 3 servers
> š One-Line Install: Transform Claude Code into a multi-agent orchestration platform in seconds
---
Zero commands to type - Perfect for any VS Code instance!
1. Open your project in VS Code
2. Drag DRAG_DROP_INSTALL.md ā Drop into Claude Code
3. Press Enter when prompted
4. ā
Auto-installs in ~60 seconds!
š Three Installation Files Available:
- DRAG_DROP_INSTALL.md - Main drag & drop installer ā
- INSTALL_NEW_VSCODE.md - Cross-project setup guide
- QUICK_INSTALL_PROMPT.txt - Copy/paste prompt
šÆ Use in Different VS Code? Just drag the file again!
---
Install globally with commands:
``bash`
/plugin marketplace add superdisco-agents/claude-flow
/plugin install claude-flow@superdisco-agents/claude-flow
ā
Automatic Setup:
- All MCP servers registered (claude-flow, spd-swarm, flow-nexus)
- 76 agents immediately available
- 150+ commands ready to use
- Memory system initialized
#### š One-Liner Installation (Easiest)
`bash`Auto-detects and installs best available method
curl -fsSL https://raw.githubusercontent.com/superdisco-agents/claude-flow/main/scripts/install-mcp.sh | bash
#### š¦ NPM Installation (Recommended - When Published)
Fastest method once published to npm:
`bashInstall alpha version
claude mcp add claude-flow npx @superdisco/claude-flow@alpha mcp start
Status: ā³ Coming soon! Follow NPM Publishing Guide
#### š GitHub Installation (Current Default)
SuperDisco fork uses GitHub distribution:
`bash
Install directly from GitHub
npx github:superdisco-agents/claude-flow init --forceVerify installation
npx github:superdisco-agents/claude-flow --version
v2.7.0-alpha.14 (@superdisco/claude-flow)
`Add to Claude Code MCP:
`bash
claude mcp add claude-flow npx github:superdisco-agents/claude-flow mcp start
`Cross-VS Code Setup: See VS Code Cross-Instance Guide
$3
`bash
Try natural language skills
"Review this PR for security issues"
"Create a swarm to build this API"
"Use semantic search to find similar code"Or use commands directly
npx github:superdisco-agents/claude-flow swarm "build REST API" --claude
npx github:superdisco-agents/claude-flow memory store api_key "API configuration" --reasoningbank
npx github:superdisco-agents/claude-flow github pr-review --security
`$3
For teams using private GitHub repositories:
`bash
1. Ensure you have repository access
gh auth status # Verify GitHub authentication2. Add private marketplace
/plugin marketplace add superdisco-agents/claude-flow3. Install plugin
/plugin install claude-flow@superdisco-agents/claude-flow4. Verify installation
./scripts/verify-installation.sh
`Team Auto-Installation: Place
.claude/settings.json in your project:`json
{
"extraKnownMarketplaces": {
"superdisco-agents": {
"source": {
"source": "github",
"repo": "superdisco-agents/claude-flow"
}
}
}
}
`docs/INSTALL-MARKETPLACE.md for:
- Authentication setup (GitHub CLI, PAT, SSH)
- Private repository access
- Team deployment patterns
- Offline installation
- Troubleshooting---
š Features
$3
- ReasoningBank: Persistent SQLite memory
- Semantic Search: 2-3ms query latency
- No API Keys: Hash-based embeddings
- Namespace Isolation: Organize by domain
- AgentDB Integration: 150x-12,500x performance
$3
- Hive-Mind Intelligence: Queen-led coordination
- Dynamic Agent Architecture: Self-organizing
- 4 Topologies: Hierarchical, Mesh, Ring, Star
- Fault Tolerance: Auto-recovery & retries
- Session Management: Persistent workflows
$3
- 76 Specialized Agents in 20 categories
- SPARC Methodology: 18 development modes
- Auto-Activation: Natural language detection
- Context-Aware: Understands project state
- Customizable: Build your own agents
$3
- PR Management: Reviews, approvals, merging
- Code Analysis: Security, performance, quality
- Release Automation: Changelogs, versioning
- Multi-Repo: Cross-repository operations
- 6 Specialized Modes: Workflow automation
$3
No commands to memorize - just describe what you want:
| Category | Skills | Example Trigger |
|----------|--------|-----------------|
| š§ Development | SPARC, Pair Programming, Skill Builder | "Let's pair program on this" |
| š§ Memory | Vector Search, AgentDB, ReasoningBank | "Search my notes for X" |
| š Swarm | Orchestration, Hive-Mind, Coordination | "Create a swarm to build Y" |
| š GitHub | PR Review, Workflows, Releases | "Review this PR for security" |
| āļø Automation | Hooks, Verification, Performance | "Set up pre-commit hooks" |
| š Cloud | Flow Nexus, E2B Sandboxes | "Run this in a sandbox" |
---
š Documentation
$3
- Installation Guide - Detailed setup instructions
- Quick Start Tutorial - 5-minute walkthrough
- Skills Tutorial - Natural language activation
- Windows Installation - Special instructions
$3
- Swarm Orchestration - Multi-agent coordination
- ReasoningBank Memory - Persistent storage
- GitHub Integration - PR automation
- MCP Tools - 110+ tools across 3 servers
$3
- Agent Development - Build custom agents
- Hooks System - Automated workflows
- Neural Training - WASM acceleration
- Flow Nexus Cloud - Cloud orchestration
$3
- Command Reference - All 150+ commands
- Agent Catalog - All 76 agents
- API Documentation - Programmatic usage
- Configuration - Settings & customization
---
š Examples
$3
`bash
Store memories with context
npx claude-flow@alpha memory store api_config "REST API on port 3000" \
--namespace backend --reasoningbankQuery with semantic search (2-3ms)
npx claude-flow@alpha memory query "API configuration" \
--namespace backend --reasoningbankā
Found 1 result (match: 87.3%)
š api_config: "REST API on port 3000"
`$3
`bash
Automated security analysis
npx claude-flow@alpha github pr-review \
--security \
--mode strict \
--pr 123Checks:
ā
SQL injection vulnerabilities
ā
XSS attack vectors
ā
Authentication bypasses
ā
Secrets in code
ā
Dependency vulnerabilities
`$3
`bash
Create multi-agent swarm
npx claude-flow@alpha swarm init --topology mesh
npx claude-flow@alpha swarm spawn researcher "analyze requirements"
npx claude-flow@alpha swarm spawn architect "design system"
npx claude-flow@alpha swarm spawn coder "implement features"Monitor progress
npx claude-flow@alpha swarm status
ā
3 agents active, 2 tasks complete
`$3
`bash
Interactive wizard setup
npx claude-flow@alpha hive-mind wizardSpawn coordinated agents
npx claude-flow@alpha hive-mind spawn \
"build e-commerce platform" \
--claudeSession persists in SQLite
npx claude-flow@alpha hive-mind resume session-xxxxx
`---
š ļø Architecture
`
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā Claude Code Plugin ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā¤
ā šØ Skills (25) ā š¤ Agents (76) ā ā” Commands (150+)ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā¤
ā š§ ReasoningBank Memory Layer ā
ā (SQLite + Semantic Search + 2-3ms) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā¤
ā š Swarm Orchestration ā
ā (Hive-Mind + Dynamic Agents + 4 Topologies) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā¤
ā š§ MCP Tools (110+) ā
ā claude-flow (40) ā spd-swarm (50+) ā flow-nexus (70+) ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
`$3
| Component | Description | Performance |
|-----------|-------------|-------------|
| ReasoningBank | Persistent SQLite memory with semantic search | 2-3ms queries |
| AgentDB | Vector database for agent coordination | 150x-12,500x faster |
| Swarm Engine | Multi-agent orchestration with 4 topologies | Auto-scaling |
| MCP Integration | 110+ tools across 3 servers | Real-time |
| GitHub Automation | 6 specialized modes for repo management | Webhook-based |
---
š What's New in v2.7.0
$3
- Semantic Search Fixed: Resolved 0-results bug in memory queries
- Plugin Marketplace: Schema-compliant for global installation
- Node.js Backend: Replaced WASM with SQLite for better performance
- Parameter Alignment: Fixed namespace vs domain mismatch
$3
- Global Plugin Installation: One-command setup via Claude Code marketplace
- Enhanced Memory: Persistent
.swarm/memory.db with MMR ranking
- Improved Embeddings: Hash-based (no API keys) or OpenAI (optional)
- Better Performance: 2-3ms query latency, 400KB per pattern$3
- ā
84.8% SWE-Bench solve rate
- ā
2-3ms semantic search latency
- ā
150x-12,500x AgentDB performance improvement
- ā
110+ MCP tools across 3 servers
š Full Release Notes
---
š MCP Servers
Claude-Flow integrates three powerful MCP servers:
$3
`bash
Automatically registered during plugin install
Provides: Swarm coordination, agent management, memory operations
`Key Tools:
-
swarm_coordinate - Multi-agent orchestration
- memory_store - ReasoningBank integration
- agent_spawn - Dynamic agent creation
- hive_mind_init - Queen-led coordination$3
`bash
Optional: Advanced swarm features
Provides: WASM acceleration, neural training, advanced topologies
`Key Tools:
-
neural_train - WASM-accelerated learning (2.8-4.4x speed)
- topology_optimize - Dynamic topology selection
- swarm_analyze - Performance monitoring
- fault_recovery - Auto-healing mechanisms$3
`bash
Optional: Cloud orchestration platform
Provides: E2B sandboxes, marketplace, challenges
`Key Tools:
-
sandbox_create - Isolated execution environments
- marketplace_publish - Agent sharing
- challenge_submit - SWE-Bench evaluation
- cloud_coordinate - Distributed swarms---
š¤ Community
$3
- GitHub Issues: Report bugs or request features
- GitHub Discussions: Ask questions & share ideas
- Discord: Join the Agentics Foundation
- Documentation: Complete guides and tutorials
$3
---
š¤ Contributing
We welcome contributions! See CONTRIBUTING.md for guidelines.
$3
`bash
Clone repository
git clone https://github.com/superdisco-agents/claude-flow.git
cd claude-flowInstall dependencies
npm installRun tests
npm testBuild
npm run build
``- TypeScript: Strict mode enabled
- Testing: Jest with 80%+ coverage
- Linting: ESLint + Prettier
- Commits: Conventional Commits format
---
MIT License - see LICENSE for details.
---
Built with:
- Claude Code - Anthropic's AI coding assistant
- Agentic-Flow - ReasoningBank memory system
- Spd-Swarm - Swarm coordination library
- Flow-Nexus - Cloud orchestration platform
---
---
Built with ā¤ļø by SuperDisco Agents
Powered by Revolutionary AI