Supporting Devpods, Github Codespaces, and more!
Features 600+ AI agents, Claude Flow, SPARC methodology, and automatic context loading!
# 1. Install DevPod
# macOS: brew install loft-sh/devpod/devpod
# Windows: choco install devpod
# Linux: curl -L -o devpod "https://github.com/loft-sh/devpod/releases/latest/download/devpod-linux-amd64" && sudo install devpod /usr/local/bin
# 2. Setup Devpod provider and configuration.
# 3. Launch workspace
devpod up https://github.com/marcuspat/turbo-flow-claude --ide vscodeThat's it! You now have a cloud development environment ready to use.
# 1. Create a new Codespace
# 2. Launch the Codespace in VS Code.
# 3. Upload the Codespace Boot Script and Run Script.
See the github_codespaces_setup.md in the root of this project.# 1. Launch Google Cloud Shell in Browser or VS Code
# 2. Upload the Codespace Boot Script and Run Script.
See the google_cloud_shell_setup.md in the root of this project.After setup, use these **enhanced commands** that automatically load context files:
### 🎯 **Main Commands**
```bash
cf-swarm "build a tic-tac-toe game" # Swarm with auto-loaded context
cf-hive "create a REST API" # Hive-mind with auto-loaded context
cf "memory stats" # Any Claude Flow command with context
dsp # claude --dangerously-skip-permissions- CLAUDE.md - Development rules and patterns
- doc-planner.md - Planning agent (SPARC methodology)
- microtask-breakdown.md - Task decomposition agent
- Agent Library - Info about 600+ available agents
# ❌ OLD WAY
(cat CLAUDE.md && cat agents/doc-planner.md && cat agents/microtask-breakdown.md) | npx claude-flow@alpha swarm "build game" --claude
# ✅ NEW WAY
cf-swarm "build game"# 🎮 Game development
cf-swarm "build a multiplayer tic-tac-toe with real-time updates"
# 🌐 Web development
cf-hive "create a full-stack blog with authentication and admin panel"
# 🔍 Analysis tasks
cf "analyze this codebase and suggest improvements"
# 📊 Agent discovery
cf-swarm "First discover relevant agents with 'find agents/ -name \"*game*\"' then build a space invaders game"- 600+ AI Agents - From 610ClaudeSubagents + custom additions
- SPARC Methodology - Systematic development workflow
- Automatic Context Loading - No more manual file piping
- Claude Flow Integration - Advanced AI orchestration
- Playwright Integration - Visual verification for UI work
- Advanced Monitoring - Usage tracking with Claude Monitor
- Claude Code CLI - Official Claude development tools
- Docker-in-Docker - Container development support
- Node.js & TypeScript - Modern JavaScript development
- Playwright - Automated testing and screenshots
- tmux Workspace - 4-window terminal setup
devpod up https://github.com/marcuspat/turbo-flow-claude --ide vscodePerfect for new projects or dedicated Claude development.
# Clone configuration
git clone https://github.com/marcuspat/turbo-flow-claude claude-config
# Copy to your project
cp -r claude-config/.devcontainer ./
cp -r claude-config/devpods ./
# Launch
devpod up . --ide vscodeChoose your preferred cloud provider:
devpod provider add digitalocean
devpod provider use digitalocean
devpod provider update digitalocean --option DIGITALOCEAN_ACCESS_TOKEN=your_token
devpod provider update digitalocean --option DROPLET_SIZE=s-4vcpu-8gb # $48/monthdevpod provider add aws
devpod provider use aws
devpod provider update aws --option AWS_INSTANCE_TYPE=t3.medium # $30/month📋 Need setup instructions? Check out our comprehensive DevPod Provider Guide for detailed configuration steps. 📖 Setup Guide
- Installs Claude Code, Claude Flow, and 600+ agents
- Sets up tmux workspace with 4 windows
- Configures automatic context loading
- Installs development tools (Playwright, TypeScript, etc.)
- Window 0: Primary Claude workspace
- Window 1: Secondary Claude workspace
- Window 2: Claude usage monitor
- Window 3: System monitor (htop)
Access with: tmux attach -t workspace
Always include this for maximum effectiveness:
"Identify all subagents that could be useful for this task and utilize the claude-flow hivemind to maximize your ability to accomplish the task."
"I need to build a REST API for a todo application. Look in agents/ and:
1. Identify all useful subagents for this task
2. Create a complete development plan with visualizations
3. Utilize claude-flow hivemind to maximize our ability
4. Chain agents for planning, implementation, testing, deployment"
"Research using Kubernetes to deploy LLM services. Put output in research/ folder.
- Draw from YouTube transcripts, GitHub repos, blog posts
- Spawn 5 agents to work concurrently
- Keep iterating until clear implementation path exists"
After setup:
/workspaces/turbo-flow-claude/
├── 🤖 agents/ # 600+ AI agents
├── 📋 CLAUDE.md # Development rules
├── 📋 FEEDCLAUDE.md # Streamlined instructions
├── ⚡ claude-flow # SPARC workflow tools
├── 🔧 cf-with-context.sh # Context loading wrapper
└── 📁 [your project files]
# Create/delete workspace
devpod up https://github.com/marcuspat/turbo-flow-claude --ide vscode
devpod delete turbo-flow-claude --force
# Start/stop (saves money)
devpod stop turbo-flow-claude # Stop billing
devpod up turbo-flow-claude --ide vscode # Resume
# List workspaces
devpod listsudo chown -R $(whoami):staff ~/.devpod && \
find ~/.devpod -type d -exec chmod 755 {} \; && \
find ~/.devpod -name "*provider*" -type f -exec chmod +x {} \;killall "Code" # Close VSCode
devpod up turbo-flow-claude --ide vscode # Retryecho "Agents: $(ls -1 /workspaces/turbo-flow-claude/agents/*.md 2>/dev/null | wc -l)"
echo "Claude-code: $(which claude && echo '✓' || echo '✗')"
echo "Claude-monitor: $(which claude-monitor && echo '✓' || echo '✗')"- DevPod Documentation - Open Source Dev-Environments-As-Code
- Claude Flow SPARC - enterprise-grade AI orchestration platform by Reuven Cohen
- 610ClaudeSubagents - Subagents by Christopher Royse
- Claude Monitor - Claude Monitor by Maciek-roboblog
- Turbo Flow Aliases Guide - Aliases in Turbo Flow
- Github Codespaces Setup Guide - Setup for Github CodeSpaces
- Google Cloud Shell Setup Guide - Setup for Google Cloud Shell
- Rackspace Spot Setup Guide - Setup for Rackspace Spot
Click to expand full provider setup instructions
- Sign up at DigitalOcean
- Generate API token with read/write permissions
- Configure:
devpod provider add digitalocean
devpod provider use digitalocean
devpod provider update digitalocean --option DIGITALOCEAN_ACCESS_TOKEN=your_token
devpod provider update digitalocean --option DROPLET_SIZE=s-4vcpu-8gbpip install awscli
aws configure
devpod provider add aws
devpod provider use aws
devpod provider update aws --option AWS_INSTANCE_TYPE=t3.medium
devpod provider update aws --option AWS_REGION=us-east-1brew install azure-cli # macOS
az login
devpod provider add azure
devpod provider use azure
devpod provider update azure --option AZURE_VM_SIZE=Standard_B2s
devpod provider update azure --option AZURE_LOCATION=eastuscurl https://sdk.cloud.google.com | bash
gcloud auth login
devpod provider add gcp
devpod provider use gcp
devpod provider update gcp --option GOOGLE_PROJECT_ID=your-project
devpod provider update gcp --option GOOGLE_MACHINE_TYPE=e2-mediumdevpod provider add docker
devpod provider use docker
# No additional configuration needed🎯 Ready to supercharge your development with 600+ AI agents?
devpod up https://github.com/marcuspat/turbo-flow-claude --ide vscode