Agent Vault
Programmable wallets with per-transaction limits, daily caps, rate limiting, token/program allowlists, and pause/resume controls.
Programmable vaults, agent discovery, and milestone-based settlement on Solana
Three library packages are on npm since v0.1.0 (@agenomics/capability-manifest-validator and @agenomics/sas-resolver, published 2026-07-15; @agenomics/action-runtime, 2026-07-21 — all ESM-only, so import, not require()):
npm install @agenomics/capability-manifest-validator @agenomics/sas-resolverThe MCP server itself is not published — @agenomics/mcp-server is packaging-ready but the publish is still pending, so install it from source:
# Clone and build the workspace (root postinstall builds all 4 TS packages)
git clone https://github.com/agenomics-labs/protocol
cd protocol && npm install
# Configure for devnet
cp mcp-server/.env.devnet mcp-server/.env
# Run the MCP server (or have your MCP client launch it via stdio)
node mcp-server/dist/index.jsSee Getting Started for the full Claude Desktop / Cursor wiring.
AEP consists of three Solana programs connected via real CPI:
| Program | Program ID | Purpose |
|---|---|---|
| Agent Vault | D2y1dEi4dj1pcxw6GvkFWX34RRbuFJCaGWdPNJAasQ5q | Programmable wallets with spending policies |
| Agent Registry | 26KETQPxeMmbakxpVbUEpQBQmVgpabHAweTHBRgBHjW7 | Discovery and reputation |
| Settlement | AwjdsNvhR2uwPNbU6F2fsYB33VcNGL5XaANdgsyvZDia | Milestone escrow and disputes |
AEP ships an /llms.txt entry point following the llmstxt.org convention so AI development tools can read the protocol's public contract directly.
https://agenomics.xyz/llms.txt is the canonical file (source: site/llms.txt). This documentation site serves a second, narrower copy at https://docs.agenomics.xyz/llms.txt (source: docs/public/llms.txt) that describes only the pages you are reading now. If the two ever disagree, the canonical one wins.
https://agenomics.xyz/llms.txt to your context.llms.txt link or paste the canonical docs into the conversation.Per ADR-137; the v0.2 follow-up adds a build-time llms-full.txt concatenation and per-package CLAUDE.md / AGENTS.md files.