Production-ready reference architectures for Lindy AI integrations covering basic integration, event-driven, multi-agent orchestration, and high-availability patterns.
Select based on requirements: Basic (simple request/response), Event-driven (async with queues), Multi-agent (orchestrated pipelines), or HA (failover and caching).
Set up Express backend with Lindy SDK for simple synchronous agent interactions.
Use BullMQ workers to process agent tasks asynchronously from a queue, emitting results on completion.
Build an orchestrator that plans work, delegates to specialized agents (research, analysis, writing), and synthesizes results.
Create an HA client with primary/fallback Lindy instances and Redis caching for automatic failover.
For detailed implementation code and architecture diagrams, load the reference guide:
Read(${CLAUDE_SKILL_DIR}/references/implementation-guide.md)
| Pattern | Failure Mode | Recovery |
|---|---|---|
| Basic | API error | Retry with backoff |
| Event-driven | Worker crash | Queue retry |
| Multi-agent | Step failure | Skip or fallback |
| HA | Primary down | Automatic failover |
Proceed to Flagship tier skills for enterprise features.
Basic usage: Apply lindy reference architecture to a standard project setup with default configuration options.
Advanced scenario: Customize lindy reference architecture for production environments with multiple constraints and team-specific requirements.