Help
Examples / Cookbook
Start with the complete multi-SDK implementation first, then use cookbooks for focused patterns.
Full implementation page: Full-fledged support agent
Then apply recipes in this order:
- Support agent memory loop
- Multi-agent shared state
- Building event-driven agents
- Branching what-if simulations
Framework integration examples
Complete example apps with real LLM calls showing MuBit integrated with popular agent frameworks:
| Example | Framework | What it shows |
|---|---|---|
| Support Ticket Triage | CrewAI | 3-agent crew with handoffs, checkpoints, and outcome recording |
| Code Review Pipeline | LangGraph | StateGraph with conditional reviewer loop and MuBit store |
| Research Assistant | LangChain | Multi-turn conversation with cross-session memory |
| Travel Planner | Google ADK | SequentialAgent with Gemini tool calling |
| FAQ Bot | Vercel AI SDK | Middleware auto-injection with knowledge-base tool |
Failure modes and troubleshooting
| Symptom | Root cause | Fix |
|---|---|---|
| Recipes work alone but fail together | Run identity not carried between stages | Keep deterministic run IDs by role/task |
| Progression feels disconnected | Recipe order skipped | Follow the recipe order above and reuse the same project folder |
Next steps
- Recheck foundations at How Mubit works.
- Use route-level references at Control HTTP reference.