sales-outreach-automation-langgraphAgent34/100 via “execution state persistence and workflow resumability”
Automate lead research, qualification, and outreach with AI agents and Langgraph, creating personalized messaging and connecting with your CRMs (HubSpot, Airtable, Google Sheets)
Unique: Uses LangGraph's StateGraph to manage workflow state through a typed state object (OutReachAutomationState in src/state.py) that flows through each node, enabling each step to access and update shared context. State is explicit and debuggable, but persistence is in-memory only.
vs others: More transparent than implicit state passing because all data flows through a defined schema; more debuggable than distributed systems because state is centralized; less durable than database-backed state because it's lost on crashes and requires external storage for true persistence.