Skip to main content
Enterprise AI agent control plane

AIOSCPDocumentation

SDK guides, API references, and security controls for teams integrating governed AI agents into production applications.

29curated guides
8documentation areas
111OpenAPI paths

control-plane.topology

AIOSCP architecture overview
Role-based paths

Start with the work your team owns.

The documentation is organized around the jobs teams perform when they ship AI agents into governed, observable environments.

Documentation map

From SDK install to governed agent work.

AIOSCP combines a developer SDK, tenant-scoped APIs, visual workflow design, and enterprise controls so applications can call agents without taking ownership of the control plane.

SDK quick startAPI guide
npm install @aioscp/sdk

import { AiosClient } from "@aioscp/sdk";

const client = new AiosClient({
  endpoint: "https://api.aioscp.com",
  token: process.env.AIOSCP_TOKEN,
});

const task = await client.tasks.submit("agent_support_triage", {
  ticketId: "INC-1042",
});
SDK-first

Integrate AIOSCP from your application.

Install the client, configure authentication, submit work to governed agents, and inspect runtime results from the same contract your production application will use.