π₯ I built this project in just 1 hour to demonstrate how fast agentic AI systems can be prototyped when you focus on modular goal execution, not just LLM completions.
A LangGraph-powered multi-agent system that transforms natural language goals into structured task flows β then executes them using mock tools (like Email, LinkedIn, and Calendar APIs).
βSchedule a product webinar and send invitesβ
- π― Goal Parsing β Extracts the intent from user input
- π¬ Clarification Agent β Asks for more info if the goal is vague
- π§ Fuzzy Task Planner β Uses fuzzy match + keyword logic to map goal to tools
- π§ Tool Executor β Simulates execution (email/calendar/post)
- π Feedback Loop β User can say "go again" or "stop"
- LangGraph β Agent workflow orchestration
- Python β CLI backend
- Difflib +
input()β Fuzzy matching + interactive user feedback - Mock Mode β No real APIs needed, perfect for quick demos
email_sendercalendar_apilinkedin_posterdefault_tool(fallback for unknowns)
- Fuzzy match for terms like βwebinarβ, βinviteβ, βscheduleβ
- Falls back to asking the user if the goal is unclear
- Extensible design β easily plug GPT or API tools into each node
- β±οΈ Built in 1 hour β shows execution speed and architectural clarity
- π¦ Agent-based, not just chat-based β structured, multi-step automation
- π§ Built for real-world usage β not just a wrapper around OpenAI