@ats-ai/sdk
v1.0.0
Published
ATS — Agent Transfer Shield SDK for Node.js
Downloads
59
Maintainers
Readme
@ats-ai/sdk — ATS SDK for Node.js
Official Node.js client for ATS (Agent Transfer Shield) — compliance and audit trail enforcement for AI agent financial transactions.
Installation
npm install @ats-ai/sdkQuick Start
const { ATSClient } = require('@ats-ai/sdk');
const client = new ATSClient({ apiKey: 'ats_sk_your_key_here' });
const result = await client.check({
agentId: 'trading-bot-01',
action: 'TRANSFER',
amount: 1500.00,
currency: 'CHF',
});
console.log(result.status); // "ALLOWED" or "BLOCKED"
console.log(result.reason);Requirements
- Node.js 18+
- ATS API key (get one at ats-ai.ch/onboarding)
License
MIT — see LICENSE
