forked from ruvnet/ruflo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquick-start.sh
More file actions
executable file
·67 lines (56 loc) · 2.08 KB
/
quick-start.sh
File metadata and controls
executable file
·67 lines (56 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
# Claude Flow Examples - Quick Start Guide
# This script demonstrates the new organized example structure
echo "🚀 Claude Flow Examples - Quick Start"
echo "===================================="
echo ""
# Function to display section
show_section() {
echo "📁 $1"
echo " $2"
echo ""
}
# Display the new structure
show_section "01-configurations/" "System and workflow configuration files"
echo " - development-config.json: Complete system configuration"
echo ""
show_section "02-workflows/" "Multi-agent workflow definitions"
echo " - claude-workflow.json: 4-agent development workflow"
echo " - research-workflow.json: AI research pipeline"
echo ""
show_section "03-demos/" "Live demonstration scripts"
echo " - create-swarm-sample.sh: Note-taking app demo"
echo " - demo-swarm-app.sh: Weather CLI demo"
echo " - rest-api-demo.sh: REST API creation"
echo " - swarm-showcase.sh: Task manager demo"
echo ""
show_section "04-testing/" "Testing and validation scripts"
echo " - sparc-swarm-test.sh: SPARC TDD test suite"
echo " - test-swarm-cli.sh: CLI functionality tests"
echo ""
show_section "05-swarm-apps/" "Complete apps created by swarm"
echo " - swarm-created-app/: Task manager application"
echo " - swarm-sample/: Note-taking application"
echo ""
show_section "06-tutorials/" "Guides and documentation"
echo " - sparc-batchtool-orchestration.md: BatchTool guide"
echo ""
echo "🎯 Quick Commands:"
echo "=================="
echo ""
echo "# Run a demo:"
echo "cd examples/03-demos/quick && ./quick-api-demo.sh"
echo ""
echo "# Create from workflow template:"
echo "cd examples && ../claude-flow swarm create 'Build hello world app based on simple workflow' --output ./output/hello"
echo ""
echo "# Run tests:"
echo "cd examples/04-testing/unit && ./test-memory-system.sh"
echo ""
echo "# Create your first swarm:"
echo "cd examples && ../claude-flow swarm create 'Build a simple calculator'"
echo ""
echo "# Try SPARC TDD:"
echo "cd examples && ../claude-flow sparc tdd 'Create user login function'"
echo ""
echo "📚 For more information, see examples/README.md"