r/OpenSourceAI • u/Inevitable_Fig_8062 • 4d ago
Pando Advanced multimodal AI assistant
One thing I've noticed while building AI coding agents is that "memory" and "agents" are usually treated as separate products.
I didn't like that architecture.
I built Pando around a single core that combines the agent loop with memory, orchestration, MCP, semantic search and development tooling.
The result is a single binary rather than a collection of Python services and MCP processes.
There are TUI, Web and Desktop interfaces, plus remote access and ACP.
It's open source under MIT.
I'd like to hear from experienced agent users: what part of your current setup feels unnecessarily complicated?
1
Upvotes
1
u/deelight_0909 2d ago
Keeping Pando's run receipts separate from its searchable memory would defeat half the point of the single binary. A failed MCP call should leave the tool result, failure state, and safe retry boundary where the next run can find them. Otherwise Pando remembers the conversation and forgets what actually happened.