🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@terminator-network/core

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@terminator-network/core

Core library for [Terminator](https://github.com/terminator-network/terminator) — disposable identities for AI agents.

latest
npmnpm
Version
0.1.1
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

@terminator-network/core

Core library for Terminator — disposable identities for AI agents.

Provides the Terminator class, provider adapters, identity management, policy engine, kill switch, and activity logging.

Install

npm install @terminator-network/core

Or use the umbrella package tn8r which includes this plus a CLI.

Usage

import { Terminator } from "@terminator-network/core";

const t = new Terminator();

const identity = await t.createIdentity({
  resources: ["email", "phone", "card"],
  ttlMinutes: 60,
  spendLimitCents: 5000,
});

console.log(identity.email);  // agent-k8f2xq@your-domain.com
console.log(identity.phone);  // +14155551234

const { emails, sms } = await t.readMessages(identity.id);
const code = await t.extractCode(identity.id);
const card = await t.getCardDetails(identity.id);

await t.killIdentity(identity.id);

BYOK

No keys configured? Runs with mock providers by default. See the main repo for provider setup.

License

MIT

FAQs

Package last updated on 20 Feb 2026

Did you know?

Socket

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.

Install

Related posts