Documentation Index
Fetch the complete documentation index at: https://docs.verifiedx.me/llms.txt
Use this file to discover all available pages before exploring further.
Start with the highest-level surface your repo already uses. Only fall back to raw Python or raw TypeScript if no native adapter already owns the tool loop, graph, or runtime.Run doctor first:
- TypeScript / OpenAI / OpenAI Agents SDK / Anthropic / Claude / Claude Agent SDK / Vercel AI SDK / MCP (TypeScript):
npx @verifiedx-core/sdk doctor - Python / LangGraph / MCP (Python):
verifiedx doctor
Pick your stack first
Most common starting points:- OpenAI
- OpenAI Agents SDK
- LangGraph
- Vercel AI SDK
- Anthropic / Claude
- Claude Agent SDK
- Python SDK
- TypeScript SDK
Install
Add the VerifiedX package for your runtime.
This page shows the raw runtime path because it is the fastest universal install. If your app already uses OpenAI direct, OpenAI Agents SDK, Anthropic direct, Claude Agent SDK, LangGraph, LangChain, Vercel AI SDK, or MCP, prefer the native adapter page for that stack.
Set environment variables
For the hosted service,
VERIFIEDX_API_KEY is the only required variable..env
VERIFIEDX_BASE_URL already defaults to https://api.verifiedx.me. Org, project, and environment also have SDK defaults, so they are optional for a first install.Bind your node
Bind the methods VerifiedX should observe and preflight. For the raw runtime, that usually means your LLM call, retrieval method, and the first risky action or durable memory write you want to protect.
If the first risky node you want to protect is a durable memory write instead of an action, bind it under
memories instead of actions.If the node you are protecting is part of a larger multi-agent or agent+human workflow, pass upstream context into VerifiedX so that node has better system and situational awareness before it takes a high-impact action. VerifiedX does not require a fixed schema for this. Pass the upstream context you already have in any JSON-serializable shape.
Run your agent and check your logs
Run your agent as normal. VerifiedX observes the run, preflights the protected side effect before it lands, and records a decision receipt you can inspect.Open the VerifiedX dashboard to inspect your decision logs. Each protected action check includes:
- The action that was intercepted
- The preflight outcome:
allow,allow_with_warning,replan_required, orgoal_fail_terminal - Structured reasons explaining the decision
- A machine-readable decision receipt with routing and resume semantics
Tell your coding agent
Use this prompt to have a coding agent integrate VerifiedX into an existing codebase for you.Agent integration prompt
Agent integration prompt