Skip to content
SecureSpace

Preparing the security surface.

Docs

A preview of the developer surface.

Mintos AI docs will open first to selected design partners.

Quickstart

Send your first event

The SDK is intentionally calm. Initialize it, emit traces, and let policy and evidence workflows do the rest.

import { SecureSpace } from "@securespace/sdk";

const ss = new SecureSpace({ apiKey: process.env.SS_KEY! });

await ss.trace({
  session: "agent-42",
  step: "tool.call",
  tool: "search",
  input: { query },
  output,
});

const decision = await ss.policy.evaluate({
  session: "agent-42",
  action: "tool.call",
  resource: "search",
});

if (decision.deny) throw decision.reason;
Modules

What the Mintos AI SDK is designed to cover

module

trace

Send agent, model, and API events to detection.

module

policy

Evaluate decisions inline or in advisory mode.

module

evidence

Emit signed records for audit pipelines.

module

identity

Issue short-lived, scoped tokens for tools.

module

incidents

Open, update, and close incidents via API.

module

webhooks

Receive decisions and incident events into your stack.