Built for platform and integration engineers

Build on the Org Systems AI platform

Org Systems AI isn't just an app you log into — it's a platform you can integrate with. A Control Plane API, first-class SDKs, a CLI, and a webhook surface let you connect agents, workflows, and governed execution directly into your own systems, across AI Hub, AI Control Center, and the Agent Runtime Network.

A full integration surface

Everything you need to build against Org Systems AI

Control Plane API

A REST/GraphQL-style API over projects, agents, workflows, approvals, policy, and execution — the same control plane that powers AI Hub and AI Control Center.

TypeScript SDK

A typed client for Node and browser environments to authenticate, dispatch agent executions, and stream results from your own applications.

Python SDK

A Pythonic client for data and automation teams — same authentication and execution model as the TypeScript SDK, built for scripts and services.

CLI

A command-line interface for local development, CI/CD pipelines, and operators who want to script projects, agents, and deployments directly.

Webhooks & integrations

Subscribe to execution, approval, and governance events so your own systems can react to what happens inside Org Systems AI in real time.

Developer portal

A dedicated developer portal with guides, API references, and sample apps is coming as part of the Org Systems AI developer program.

One SDK, the whole platform

Authenticate once, then dispatch and observe governed agent executions from your own code.

import { OrgSystemsClient } from "@orgsystems/sdk";

const client = new OrgSystemsClient({
  apiKey: process.env.ORG_SYSTEMS_API_KEY,
});

// Dispatch an agent execution on the Agent Runtime Network
const execution = await client.agents.dispatch({
  agentId: "agent_support_triage",
  input: { ticketId: "TCK-4821" },
});

// Stream execution status until it completes
for await (const event of client.executions.stream(execution.id)) {
  console.log(event.status, event.output);
}

Built on a proven runtime foundation

The Agent Runtime Network is built on the existing EntAIOS technical foundation — desktop, browser, and cloud execution nodes that have already been running governed agent workloads. The APIs and SDKs above expose that foundation as part of the broader Org Systems AI product, not as a standalone runtime product.

Start building on Org Systems AI

Request early access to get API keys, SDK access, and CLI credentials as they roll out.