Complete DevPod workspace with 600+ AI agents, SPARC methodology, and automatic context loading
# 1. Install DevPod
brew install loft-sh/devpod/devpod # macOS
# 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. 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.
After setup, use these enhanced commands that automatically load context files:
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/monthSee full provider setup guide below.
- 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
- Claude Flow SPARC by Reuven Cohen
- 610ClaudeSubagents by Christopher Royse
- Claude Monitor by Maciek-roboblog
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