v2/examples/03-demos/README.md
Interactive demonstrations showing Claude Flow creating various applications through the swarm system.
03-demos/
├── quick/ # Fast demos (< 2 minutes)
├── interactive/ # User-interactive demos
├── swarm/ # Multi-agent swarm demos
├── api-creation/ # API-specific demos
├── create-swarm-sample.sh # Original note app demo
├── demo-swarm-app.sh # Original weather app demo
├── rest-api-demo.sh # Original REST API demo
└── swarm-showcase.sh # Original task manager demo
quick/)cd examples/03-demos/quick
./quick-api-demo.sh
interactive/)cd examples/03-demos/interactive
./chat-bot-demo.sh
swarm/)cd examples/03-demos/swarm
./multi-agent-demo.sh
Creates a note-taking CLI application (929 lines)
Weather CLI application demo (407 lines)
REST API creation demo (342 lines)
Task manager application (407 lines)
All demos are executable shell scripts:
# Basic execution
./create-swarm-sample.sh
# See what's created
./demo-swarm-app.sh && ls -la output/
# Watch the process
./rest-api-demo.sh --verbose
Swarm Initialization
Agent Coordination
Code Generation
Output Structure