@veridex/agents-adapters
The riskiest part of any migration is "rewrite everything." @veridex/agents-adapters lets you adopt Veridex incrementally: import existing tools, export Veridex tools as MCP/OpenAI functions, and run live bridges that translate state between frameworks.
npm install @veridex/agents-adaptersWhat's in the box
| Layer | Direction | Sources / targets |
|---|---|---|
| Import | Other → Veridex | OpenAPI, LangChain tools, LangGraph nodes, OpenAI functions, PydanticAI tools |
| Export | Veridex → Other | MCP server, OpenAI function list, LangChain Tool array |
| Live bridges | Bidirectional | LangGraph nodes, OpenAI Assistants, Mastra steps |
The migration playbook
- Import existing tools. Veridex runs them under sandbox + policy without a rewrite.
- Bridge live workflows. Incremental traffic moves to Veridex for high-stakes paths.
- Replace piecewise. Once a workflow is fully on Veridex, the bridge is removed.
Why not just wrap-and-call?
Wrapping LangChain inside Veridex inherits LangChain's failure modes (opaque prompt mutation, no checkpoints). The bridges go the other way: high-stakes paths execute under Veridex's loop with Veridex's governance; low-stakes paths continue to run where they live.
See ADR-0060 for the design rationale.