Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content
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:

  1. Support agent memory loop
  2. Multi-agent shared state
  3. Building event-driven agents
  4. Branching what-if simulations

Framework integration examples

Complete example apps with real LLM calls showing MuBit integrated with popular agent frameworks:

ExampleFrameworkWhat it shows
Support Ticket TriageCrewAI3-agent crew with handoffs, checkpoints, and outcome recording
Code Review PipelineLangGraphStateGraph with conditional reviewer loop and MuBit store
Research AssistantLangChainMulti-turn conversation with cross-session memory
Travel PlannerGoogle ADKSequentialAgent with Gemini tool calling
FAQ BotVercel AI SDKMiddleware auto-injection with knowledge-base tool

Failure modes and troubleshooting

SymptomRoot causeFix
Recipes work alone but fail togetherRun identity not carried between stagesKeep deterministic run IDs by role/task
Progression feels disconnectedRecipe order skippedFollow the recipe order above and reuse the same project folder

Next steps