// 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
// INTRODUCTION

What applatform.ai is

applatform.ai lets teams build and govern AI-generated internal apps in one platform. Business users generate production apps from your company data with AI, while IT centrally controls authentication, integrations, access, and auditing.

  1. 01
    Securely connect to enterprise data through integrations
    applatform.ai acts as your integration control layer, managing authentication, access controls, and secrets across databases, SaaS apps, and internal APIs. With every query and API call centrally audited, Admins get full visibility — so business teams can build fast while IT holds a consistent security and compliance posture. Learn more in Integrations.
  2. 02
    Visibility and control with applatform.ai MCP
    applatform.ai MCP makes all platform activity a queryable system of record, giving IT real-time visibility into app usage, permissions, and audit logs — and the power to act instantly, whether revoking access or shutting down a vulnerable app.
  3. 03
    Manage role-based access control
    Admins centrally manage users and access across Development, Staging, and Production environments. Sync users and groups from your IdP (like Okta or Entra) and enforce role-based permissions consistently across apps and integrations.
  4. 04
    Enforce policies with AI agent knowledge
    Define Organization Knowledge so your AI agent follows your standards by default — design systems, code and security expectations, domain terminology, and more. It also learns your integration knowledge — data sources, schemas, and endpoints — to write accurate queries and API calls. Knowledge is centrally managed with RBAC and a full audit trail, and the agent keeps it updated as your team builds. For how knowledge is scoped and applied, see Knowledge.
  5. 05
    Git, CI/CD, and your existing SDLC
    Every app is versioned by default, so every change is safe and reversible at any time. applatform.ai fits into your existing SDLC: sync changes to your Git repository (GitHub, GitLab, Bitbucket, Azure DevOps) to enforce code reviews, automated testing, and security scans before production.
  6. 06
    Deploy the way your organization needs
    Pick the deployment model that fits your security and compliance requirements — applatform.ai Cloud, Hybrid, or Cloud-Prem. Learn more in Enterprise deployment & security.
// 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