
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@vantic/sdk
Advanced tools
Vantic — a spending firewall and permission layer for AI agents: signed mandates, allowlists, and tamper-proof receipts for every money-moving action.
Signed mandates and receipt chains for autonomous agent transactions — and a client-side spending firewall so your agent can't be prompt-injected into paying an attacker.
Zero runtime dependencies (Node ≥ 18 built-in crypto). Ed25519 + SHA-256 + canonical JSON,
with did:key/did:web identity and W3C Verifiable Credentials for the sponsor chain.
npm install @vantic/sdk
import { generateKeyPair, issueMandate, AgentWallet } from "@vantic/sdk";
const principal = generateKeyPair();
const agent = generateKeyPair();
const mandate = issueMandate({
agent: agent.publicKey,
principal: principal.publicKey,
principalPrivateKeyPem: principal.privateKeyPem,
ttlSeconds: 7 * 24 * 3600,
scope: {
budget: { currency: "USD", amount: 50000, windowSeconds: 7 * 24 * 3600 }, // $500 / 7d
maxPerTransaction: 20000,
allowedActions: ["purchase"],
allowedCounterparties: ["etsy.com", "*.shop.example"],
},
});
// Wrap your agent's spend calls. A blocked action throws BEFORE any money moves.
const wallet = new AgentWallet(mandate, agent.privateKeyPem);
await wallet.spend(
{ type: "purchase", counterparty: "etsy.com", amount: 4500, currency: "USD" },
async (a) => ({ outcome: "settled", result: await pay(a) }),
);
Also ships as an MCP server (npx vantic-mcp) exposing stateless verification tools.
Full docs, protocol spec, and demos: see the repository. Apache-2.0.
FAQs
Vantic — a spending firewall and permission layer for AI agents: signed mandates, allowlists, and tamper-proof receipts for every money-moving action.
The npm package @vantic/sdk receives a total of 342 weekly downloads. As such, @vantic/sdk popularity was classified as not popular.
We found that @vantic/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.