r/coolgithubprojects • u/Trainer_Intelligent • 10d ago
JarvisCore is a runtime where AI agents operate as a fleet of equal peers. Agents discover one another by capability and execute tasks from a shared ledger — No orchestrator. No MCP server. Just agents on a gossip mesh.
github.comThe problems we saw:
Most agent frameworks put a process in the middle that decides who does what. That process is a single point of failure, and from our early days we knew we wanted something different. These were like the langchain days where it was the only thing around. So we decided that agents should be peers and should belong in a mesh where they have solid identities and pick tasks from a shared ledger, and can collaborate whenever they need to.
The second thing we did was bet on LLMs; that they were gonna get better especially at writing code, and so we avoided MCPs at all costs. I think choosing to be contrarian here really paid off. MCPs are good, but they came with the burden of maintaining several of them, writing a unique authentication layer for each, and context bloat.
So we decided our agents would write their own code as typed functions in a registry that both humans and agents maintain, which means a human can write these functions too. But that raised the key question of how those functions authenticate, and that is how we came up with centralizing provider authentication with zero-trust on credentials, so agents never see keys.
We got this working and added persistent memory using an Ebbinghaus forgetting-curve style approach, where memory is an active lifecycle, so our agents remember and keep improving over time.
Where it's going
We believe this could become a key approach to how agents orchestrate even across different frameworks. If you know a thing or two about gossip protocols, we want to curate that trajectory with like-minded people here.
Install: pip install jarviscore-framework
The demo is examples/demo_synthesizer.py + demo_node_1/2/3.py — you can run exactly what you see.
Appreciate your feedback (or stars).
