// 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.
- 01Securely connect to enterprise data through integrationsapplatform.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.
- 02Visibility and control with applatform.ai MCPapplatform.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.
- 03Manage role-based access controlAdmins 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.
- 04Enforce policies with AI agent knowledgeDefine 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.
- 05Git, CI/CD, and your existing SDLCEvery 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.
- 06Deploy the way your organization needsPick the deployment model that fits your security and compliance requirements — applatform.ai Cloud, Hybrid, or Cloud-Prem. Learn more in Enterprise deployment & security.
// GET STARTED
Get started
Integrations
Centralize authentication, access, and secrets across your systems.applatform.ai MCP
Query platform activity and act on usage, permissions, and audits.Knowledge
Teach your AI agent your standards, schemas, and endpoints.Enterprise deployment & security
Cloud, Hybrid, or Cloud-Prem to match your compliance needs.// GET STARTED
median time-to-first-deploy: 4 daysFrom zero to first audited deploy.
5 MIN
Quick start
Register your first AI app, run a call, see the audit log.
typescriptpythongo
15 MIN
Connect your IdP
SSO + SCIM via Okta, Entra, Auth0, or any OIDC provider.
guide
20 MIN
Define a promotion policy
Eval suites, approver chains, auto-rollback rules.
yamlguide
30 MIN
Build a custom connector
Wrap any HTTP API into a governed tool with masking.
typescript
10 MIN
Memory: vector + KV
Namespaces, retention, PII redaction at write time.
typescriptpython
15 MIN
Export the audit log
Stream signed runs to S3, Splunk, Datadog, or your warehouse.
guide
// 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// RECIPES
BROWSE ALL 42 →Patterns lifted from real installs.
governance
Block PII in outputs
Add a write-side redaction policy that never lets SSNs reach the model response.
workflowsTwo-key promotion
Require two distinct approvers from different orgs before any prod promotion.
integrationsCustom Salesforce scope
Limit a tool to a specific record type and mask comp fields by default.
memoryPer-customer namespaces
Auto-route memory writes to tenant-scoped namespaces with strict isolation.
auditStream to Splunk
Tee the signed audit log into your SIEM with sub-second lag.
auditReplay a failed run
Take a flagged run and re-execute it byte-for-byte against a new model.
workflowsCanary rollout to 1%
Use a probabilistic traffic split with auto-rollback on eval regression.
governanceEU AI Act risk classifier
Run every app through the high-risk system checklist before deploy.
// CHANGELOG
FULL HISTORY →What shipped lately.
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