// DOCS

Build, deploy, and audit AI apps.

Reference for the applatform.ai SDK, the platform API, and the policies that govern them.

Search docs — try “scoped tokens”…⌘K
// SDK

Same surface, three languages.

applatform.ai SDKs ship for TypeScript, Python, and Go. The shape is identical so your services agree on policy regardless of which runtime they live in.

TypeScript
@applatform/sdk
v0.9.2● STABLE
Python
applatform
v0.9.2● STABLE
Go
github.com/applatform/sdk-go
v0.9.0● STABLE
Rust
applatform
◔ BETA
typescriptpythongocurl
import { applatform } from "@applatform/sdk";

// 1 · register
const app = await applatform.apps.create({
  name: "Contract Redliner",
  owner: "legal-ops",
  model: "claude-3.7-sonnet",
  policy: "GOV-RG.4",
  memory: { ns: "legal/contracts", retain: "7y" },
  tools: [
    applatform.tools.salesforce("contracts.read"),
    applatform.tools.docusign("envelope.create"),
  ],
});

// 2 · run — auth, audit, replay all happen here
const result = await app.run({
  input: "redline this MSA",
  user: ctx.user,
});

console.log(result.audit.replayUrl);
// → https://applatform.acme-corp.io/audit/4128072
// CHANGELOG

What shipped lately.

FULL HISTORY →
v0.9.2
4 days ago
ServiceNow + Salesforce — production-ready connectors
  • +New: field-level masking with declarative rules
  • +New: per-tenant rate limits on tool calls
  • +Fix: SCIM deprovisioning race on Entra
v0.9.1
12 days ago
Replay + retention shipped
  • +New: full byte-level replay for any audited run
  • +New: per-namespace retention (1d → 10y)
  • +New: signed audit export to S3 / Splunk / Datadog
v0.9.0
5 weeks ago
Workflows GA
  • +New: promotion pipeline with eval gates
  • +New: prompt diff + side-by-side compare
  • +New: canary traffic split + auto-rollback