Next Steps
Now that you've got AgenticGoKit installed and running, here are recommended next steps to master multi-agent AI development.
Learning Path
Beginner (1-2 hours)
- ✅ Getting Started - You're here!
- Core Concepts - Understand the fundamentals
- Your First Agent - Build a complete agent from scratch
Intermediate (2-4 hours)
- Multi-Agent Collaboration - Multiple agents working together
- Memory & RAG - Add knowledge capabilities
- Tool Integration - Connect external tools and APIs
Advanced (4+ hours)
- Production Deployment - Deploy to production
- Advanced Patterns - Complex orchestration and scaling
- Custom Development - Contribute to the framework
Quick Examples by Use Case
🔍 Research & Analysis
bash
# Multi-agent research team
agentcli create research-team --template research-assistant
cd research-team
go run . -m "Research the latest AI developments"
💬 Conversational AI
bash
# Memory-enabled chat assistant
agentcli create chat-bot --template memory-chat
cd chat-bot
go run . -m "Hello, I'm Alex. Remember my name."
📊 Data Processing
bash
# Sequential data pipeline
agentcli create data-pipeline --template sequential-processing
cd data-pipeline
go run . --input data.json
📚 Knowledge Management
bash
# RAG-powered Q&A system
agentcli create knowledge-base --template rag-qa
cd knowledge-base
go run . -m "What does our documentation say about deployment?"
Explore Templates
View all available project templates:
bash
agentcli template list
Popular templates:
simple-chat
- Basic conversational agentresearch-assistant
- Multi-agent research teammemory-chat
- Chat with persistent memoryrag-qa
- Document Q&A with vector searchtool-integration
- Agent with external tool accesscollaborative
- Multiple agents working together
Community & Resources
Documentation
- Complete Guides - Task-oriented how-to guides
- API Reference - Detailed API documentation
- Tutorials - Learning-oriented tutorials
Community
- GitHub Discussions - Ask questions, share projects
- GitHub Issues - Report bugs, request features
- Examples Repository - Real-world examples
Stay Updated
- Roadmap - Upcoming features and releases
- Changelog - Recent updates and improvements
- Releases - Download latest versions
Common Next Actions
After completing the getting started guide, most developers do one of these:
- Build a specific use case - Choose a template that matches your needs
- Learn the concepts - Read through Core Concepts
- Join the community - Ask questions in GitHub Discussions
- Contribute back - See Contributor Guide
Need Help?
Stuck on something? Here's how to get help:
- Check the Troubleshooting Guide - Common issues and solutions
- Search GitHub Discussions - Someone might have asked the same question
- Ask in Discussions - Our community is helpful and responsive
- Report Issues - If you found a bug, please report it
Ready to build something amazing? Choose your next step from the learning path above! 🚀