trovex Compare Answers Use cases Glossary Setup star on GitHub

Updated

trovex for multi-agent fleets

The short version

Running many agents in production, each one rebuilds context from a different, often stale slice of the repo, so they drift and re-derive what another already worked out. trovex gives the whole fleet one canonical source of truth it reads and writes back to, served locally over MCP, so knowledge compounds instead of resetting each session. About 60% fewer tokens per lookup, and the savings scale with the number of agents.

The problem at fleet scale

A single agent rereading docs is cheap. A fleet doing it, every session, across every overlapping runbook and ADR, is a recurring bill paid in tokens and in inconsistency. Each agent retrieves whichever doc scores highest for its query and saves what it learns into private context no other agent sees, so the fleet drifts: same question, different stale answer.

One shared store the fleet reads and writes

trovex indexes the docs and serves the one current doc per query with a freshness marker, and every agent writes what it learns back through a single shared point. A fix one agent finds is readable by the rest next session. No private copies to drift, nothing to sync. It runs locally over MCP, so any client (Claude Code, Cursor, Windsurf, Cline) reads the same answer. That is what stopping agents giving inconsistent answers actually requires.

How it rolls out

Bottom-up, no procurement. Each agent runs against a local trovex server; there is no SaaS to buy and no data leaving your machines. Point the fleet at one index and the shared context is live.

When running the fleet well is the hard part

Installing the tool is a one-minute step. Making a fleet reliable and consistent in production, with scoped permissions, review gates, and context that stays current, is the harder problem. trovex is open source you can run yourself; if you want hands-on help getting there, tsukumo consults on exactly this, and trovex is the proof of how it is done. See also rolling agents out across a team.

FAQ

How do agents stay consistent across a fleet?

They read and write through one shared store instead of each keeping a private copy. trovex serves the same canonical doc for the same query to every agent and lets them write learnings back, so the fleet converges rather than drifts.

Does a fleet need a server or cloud account?

No hosted account. trovex is a local-first MCP server each agent runs against your repo; no SaaS, no procurement, and the docs never leave your machines.

How much does it save at fleet scale?

On our own repo it measured a median of 69% fewer tokens per lookup at equal task-success across 26 queries, range 41 to 81%; we headline a conservative about 60%. The waste it removes is per-agent, so the saving grows with the fleet. See trovex.dev/measure.

Put your whole fleet on one source of truth.

One shared read-and-write point for every agent. No copies to sync. About a minute to set up.

uv tool install trovex

Open source. No cloud, no API keys. Your docs never leave your machine.