rcrewai 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,184 @@
1
+ ---
2
+ layout: tutorial
3
+ title: RCrewAI Tutorials
4
+ description: Step-by-step tutorials to master RCrewAI from basics to advanced production deployments
5
+ ---
6
+
7
+ # Tutorials
8
+
9
+ Welcome to the RCrewAI tutorials! These step-by-step guides will take you from basic concepts to advanced production deployments.
10
+
11
+ ## 🚀 Getting Started
12
+
13
+ ### [Getting Started with RCrewAI]({{ site.baseurl }}/tutorials/getting-started)
14
+ **New to RCrewAI?** Start here to learn the fundamentals: installing the gem, creating your first agents and tasks, and running your first crew.
15
+
16
+ **What you'll learn:**
17
+ - Installing and configuring RCrewAI
18
+ - Creating agents with roles and goals
19
+ - Defining tasks and dependencies
20
+ - Running crews and interpreting results
21
+ - Basic troubleshooting
22
+
23
+ **Prerequisites:** Basic Ruby knowledge
24
+ **Time:** 30 minutes
25
+ **Difficulty:** Beginner ⭐
26
+
27
+ ---
28
+
29
+ ## 🎯 Core Concepts
30
+
31
+ ### [Advanced Agent Configuration]({{ site.baseurl }}/tutorials/advanced-agents)
32
+ **Level up your agents** with sophisticated memory systems, custom reasoning loops, and specialized behaviors.
33
+
34
+ **What you'll learn:**
35
+ - Short-term and long-term memory systems
36
+ - Custom reasoning loops and multi-stage processing
37
+ - Manager agents and intelligent delegation
38
+ - Performance optimization with caching
39
+ - Specialized agent behaviors (research, code review)
40
+ - Cross-agent communication patterns
41
+ - Error handling and self-healing agents
42
+
43
+ **Prerequisites:** Getting Started tutorial
44
+ **Time:** 90 minutes
45
+ **Difficulty:** Intermediate ⭐⭐
46
+
47
+ ### [Custom Tools Development]({{ site.baseurl }}/tutorials/custom-tools)
48
+ **Extend agent capabilities** by building custom tools for specialized tasks and integrations.
49
+
50
+ **What you'll learn:**
51
+ - Understanding tool architecture and base classes
52
+ - Creating basic tools (calculator, weather, file processing)
53
+ - Advanced features (state management, async processing)
54
+ - API integration tools (REST, GraphQL)
55
+ - Database and file processing tools
56
+ - Testing strategies with RSpec
57
+ - Security validation and best practices
58
+
59
+ **Prerequisites:** Getting Started tutorial
60
+ **Time:** 2 hours
61
+ **Difficulty:** Intermediate ⭐⭐
62
+
63
+ ---
64
+
65
+ ## 🏗️ Architecture & Scaling
66
+
67
+ ### [Working with Multiple Crews]({{ site.baseurl }}/tutorials/multiple-crews)
68
+ **Scale your AI operations** with multiple specialized crews working together on complex workflows.
69
+
70
+ **What you'll learn:**
71
+ - Multi-crew architecture patterns
72
+ - Sequential pipeline execution
73
+ - Parallel crew operations
74
+ - Resource sharing between crews
75
+ - Cross-crew communication systems
76
+ - Advanced orchestration strategies
77
+ - Production multi-crew systems with monitoring
78
+
79
+ **Prerequisites:** Advanced Agent Configuration
80
+ **Time:** 2 hours
81
+ **Difficulty:** Advanced ⭐⭐⭐
82
+
83
+ ---
84
+
85
+ ## 🚀 Production & Deployment
86
+
87
+ ### [Production Deployment]({{ site.baseurl }}/tutorials/deployment)
88
+ **Deploy RCrewAI to production** with enterprise-grade reliability, monitoring, and security.
89
+
90
+ **What you'll learn:**
91
+ - Production readiness checklist
92
+ - Docker containerization (multi-stage builds)
93
+ - Kubernetes deployment with auto-scaling
94
+ - Configuration management and secrets
95
+ - Comprehensive monitoring (Prometheus, Grafana, tracing)
96
+ - Security and access control
97
+ - CI/CD pipeline with GitHub Actions
98
+ - Operational procedures and disaster recovery
99
+
100
+ **Prerequisites:** Working with Multiple Crews
101
+ **Time:** 3 hours
102
+ **Difficulty:** Expert ⭐⭐⭐⭐
103
+
104
+ ---
105
+
106
+ ## 📚 Learning Paths
107
+
108
+ ### 🎓 **Beginner Path** (Total time: ~4 hours)
109
+ Perfect for developers new to AI agents and crew-based AI systems:
110
+
111
+ 1. [Getting Started]({{ site.baseurl }}/tutorials/getting-started) (30 min)
112
+ 2. [Simple Research Crew Example]({{ site.baseurl }}/examples/simple-research-crew) (30 min)
113
+ 3. [Human-in-the-Loop Example]({{ site.baseurl }}/examples/human-in-the-loop) (45 min)
114
+ 4. [Advanced Agent Configuration]({{ site.baseurl }}/tutorials/advanced-agents) (90 min)
115
+ 5. [Custom Tools Development]({{ site.baseurl }}/tutorials/custom-tools) (2 hours)
116
+
117
+ ### 🏢 **Enterprise Path** (Total time: ~8 hours)
118
+ For teams building production-ready AI systems:
119
+
120
+ 1. Complete Beginner Path (4 hours)
121
+ 2. [Working with Multiple Crews]({{ site.baseurl }}/tutorials/multiple-crews) (2 hours)
122
+ 3. [Production Deployment]({{ site.baseurl }}/tutorials/deployment) (3 hours)
123
+ 4. [Production-Ready Crew Example]({{ site.baseurl }}/examples/production-ready-crew) (1 hour)
124
+
125
+ ### 🔧 **Developer Path** (Total time: ~6 hours)
126
+ For developers who want to extend and customize RCrewAI:
127
+
128
+ 1. [Getting Started]({{ site.baseurl }}/tutorials/getting-started) (30 min)
129
+ 2. [Custom Tools Development]({{ site.baseurl }}/tutorials/custom-tools) (2 hours)
130
+ 3. [Advanced Agent Configuration]({{ site.baseurl }}/tutorials/advanced-agents) (90 min)
131
+ 4. [API Integration Examples]({{ site.baseurl }}/examples/api-integration) (1 hour)
132
+ 5. [Web Scraping Crew Example]({{ site.baseurl }}/examples/web-scraping) (1 hour)
133
+
134
+ ---
135
+
136
+ ## 🎯 Tutorial Features
137
+
138
+ All RCrewAI tutorials include:
139
+
140
+ - ✅ **Complete working code** - Copy-paste ready examples
141
+ - ✅ **Step-by-step explanations** - Understand every concept
142
+ - ✅ **Best practices** - Learn production-ready patterns
143
+ - ✅ **Troubleshooting sections** - Debug common issues
144
+ - ✅ **Further reading links** - Dive deeper into topics
145
+ - ✅ **Real-world scenarios** - Practical use cases
146
+
147
+ ---
148
+
149
+ ## 💡 Tutorial Tips
150
+
151
+ ### Before You Start
152
+ - Ensure you have Ruby 3.0+ installed
153
+ - Have your LLM API keys ready (OpenAI, Anthropic, etc.)
154
+ - Clone the examples repository for reference code
155
+ - Join our community for support
156
+
157
+ ### While Learning
158
+ - Run examples locally to see them in action
159
+ - Experiment with different configurations
160
+ - Try modifying examples for your use cases
161
+ - Don't hesitate to ask questions in our community
162
+
163
+ ### Getting Help
164
+ - Check the [API Documentation]({{ site.baseurl }}/api/) for detailed reference
165
+ - Browse [Examples]({{ site.baseurl }}/examples/) for more code samples
166
+ - Visit our [GitHub Discussions](https://github.com/yourorg/rcrewai/discussions) for community support
167
+ - Report issues on [GitHub Issues](https://github.com/yourorg/rcrewai/issues)
168
+
169
+ ---
170
+
171
+ ## 🚀 What's Next?
172
+
173
+ After completing these tutorials, you'll be ready to:
174
+
175
+ - Build sophisticated multi-agent AI systems
176
+ - Deploy production-ready crews with monitoring and scaling
177
+ - Create custom tools for specialized use cases
178
+ - Contribute to the RCrewAI community
179
+
180
+ Ready to become an RCrewAI expert? Start with [Getting Started]({{ site.baseurl }}/tutorials/getting-started) and work your way through the tutorials that match your goals!
181
+
182
+ ---
183
+
184
+ *Have ideas for additional tutorials? [Let us know](https://github.com/yourorg/rcrewai/discussions) what you'd like to learn!*