Skip to main content
IIOS — The platform for organizational reasoning
Developer Platform

The build layer for Cognitive Enterprise applications.

IIOS exposes its reasoning, graph, and governance through typed SDKs and APIs. Build custom applications and extensions on the same infrastructure that powers our first-party products.

Get started in minutes
Terminal
# Install the IIOS SDK
npm install @iios/sdk

# Authenticate against your tenant
iios auth login --tenant acme-industrial

The CLI authenticates against your tenant and scopes every request to your governed data boundary. Nothing leaves your sovereignty perimeter.

query-graph.ts
import { createClient } from "@iios/sdk"

const iios = createClient({ tenant: process.env.IIOS_TENANT })

// Query the Industrial Knowledge Graph
const { entities } = await iios.graph.query({
  type: "Asset",
  where: { site: "PLANT-04", status: "degraded" },
  traverse: { events: { since: "-90d" }, evidence: true },
})

// Every result carries provenance and confidence
for (const asset of entities) {
  console.log(asset.id, asset.confidence, asset.evidence.length)
}
Platform surfaces

Everything you need to build

A coherent set of interfaces onto the operating system — typed, governed, and consistent across languages.

Typed SDKs

First-class TypeScript and Python SDKs with generated types from your ontology, so queries and mutations are checked at build time.

Graph query API

Traverse entities, relationships, events, and evidence with a declarative API. Results always carry provenance and confidence.

Events & webhooks

Subscribe to graph changes and reasoning outputs. Trigger downstream workflows on new evidence or confidence shifts.

Scoped credentials

Issue per-application service credentials with fine-grained scopes that inherit the platform permission model.

Start building on IIOS.

Get typed SDKs, a graph query API, and governed infrastructure to build Cognitive Enterprise applications.