alfred(again)
A domain-agnostic multi-agent orchestration framework
pip install alfredagainProblem
Most agent frameworks demo well but break in production. I wanted to build one that actually works — where you can plug in any domain and the agents know how to read, write, and reason about it without custom wiring every time.
Built
A five-agent orchestration engine on LangGraph, published on PyPI as alfredagain. You define your domain once — what data exists, how it connects, what the agents are allowed to do — and the framework handles the rest. 164 tests. Three validated domains: Kitchen (daily use), FPL (analytics), and CRM (enterprise consulting).
Learned
That the hardest problem in orchestration isn't the agents — it's the state. LLMs are nondeterministic, so everything around them has to be predictable. And that a good abstraction boundary is one you don't have to explain twice.
Act Quick
Fast Path
Simple reads bypass Think and Act entirely
Understand
Memory Manager
Routes to: Act Quick, Think, or Reply
Think
Planner
Routes to: Act, or Reply directly
Act
Executor
Multi-tool loop
Reply
Formatter
All paths converge here
Summarize
Historian




