AIRGP · A2ASTC · ThinkNEO AI

Governance for robots that think.

A control plane that decides what a robot is allowed to do — and enforces it before the action executes, not a dashboard of what already happened. Safety, compliance, and intent gated at runtime across industrial fleets and domestic robots, through open protocols.

<0.4ms
Policy evaluation (p99, benchmarked)
99.99%
Uptime SLA target
10M+
Decisions/day capacity (benchmarked)

Member of —

NVIDIA Inception Member
The Problem

Robots are shipping faster than the rules that govern them

0.0M

robots deployed globally

Industrial robots in active operation worldwide (IFR World Robotics 2024)

None

runtime governance standards

ISO 10218, IEC 61508, ISO 13482 protect humans from robots. None cover AI decision governance.

0.0

open standard — and we built it

AIRGP is the first unified runtime AI governance protocol

ThinkNEO built the missing layer.

Additive, Not Replacement

We don't replace anything. We add what's missing.

ThinkNEO is an optional governance layer that plugs into your existing robot stack. Your vendor keeps full ownership of hardware and software. We only add the decision governance that no vendor provides today.

Manufacturer owns the hardware

Motors, sensors, chassis, actuators — built and warranted by the robot maker.

Manufacturer owns the system

Firmware, OS, drivers, ROS stack — maintained and updated by the OEM.

ThinkNEO owns the decision layer

Runtime governance, policy enforcement, intent verification, audit trails — every AI decision governed in real time.

You don't control the robot. You govern what it decides to do.

Why multi-robot governance is possible

Every robot runs AI models to make decisions

Same layer, any vendor

AI inference is distributed — cloud, edge, or hybrid

Accessible via standard APIs

The decision layer can be unified across all robots

One control plane, every fleet

ThinkNEO is an optional layer — it doesn't touch motors, firmware, or hardware. It only influences the AI decisions that drive robot behavior. Add it to any robot, from any manufacturer. Remove it anytime. Zero lock-in.

Your vendor builds the robot. ThinkNEO is the optional safety net for its decisions.

The Platform

Mission Control for your robot fleet

ThinkNEO Control Panel
8 Active
AGV-001
Pallet transport
98.7%
AGV-002
Zone patrol
99.2%
ARM-001
Pick & place
67.3%
AGV-003
Charging
100.0%
AGV-004
Inventory scan
95.1%
ARM-002
Assembly
97.8%
AGV-005
Transport
99.5%
DRONE-01
Standby
100.0%
Live Event Stream
[14:32:01] AGV-001 intent.verify ALLOW (score: 98.7%)
[14:32:01] ARM-001 policy.check DENY (zone-violation)
[14:32:02] AGV-002 runtime.eval PASS (compliance: 99.2%)
[14:32:03] ARM-002 action.audit LOGGED (hash: 0x3f2a...)
[14:32:04] DRONE-01 safety.check PASS (all-clear)
[14:32:05] AGV-004 intent.verify ALLOW (score: 95.1%)
Open Protocols

Open protocols, not a black box.

ThinkNEO authored AIRGP and A2ASTC as open specifications. Implement them, audit them, extend them — your fleet is never locked in.

AIRGP Protocol Seal
Protocolv1.0

AIRGP

Artificial Intelligence Runtime Governance Protocol

An open standard for real-time policy enforcement on AI agents. Define rules in human-readable YAML, deploy to edge, and enforce in microseconds.

Runtime AdapterControl PlanePolicy EngineAudit Ledger
DOI: 10.5281/zenodo.20001903View on GitHub
A2ASTC Protocol Seal
Protocolv0.1

A2ASTC

Agent to Agent Software Team Compliance

A cryptographic protocol for multi-agent coordination. Robots verify each other's intent and compliance status before collaborative actions.

Open StandardApache-2.0Zero-knowledge proofsMulti-agent trust
DOI: 10.5281/zenodo.20002917View on GitHub
ThinkShield Protocol Seal
Defense Layerv1.0

ThinkShield

Open Defense Layer for AI Governance Platforms

Production defense engine with 5 rule packs, detection scoring, and ASGI middleware. Protects every request across the ThinkNEO platform. 179 tests, p99 0.825ms.

Detection Engine5 Rule PacksApache-2.0p99 0.825ms
View on GitHub

Stewarded by

ThinkNEO - Hong Kong

IEEE P2817-aligned (draft)ROS2 CompatibleNVIDIA Isaac compatibleOpen SourceApache-2.0
Use Cases

From the factory floor to the living room

Manufacturing

Enforce safety envelopes on cobots collaborating with humans on the line.

ISO 10218-aware policiesHuman-proximity envelopesReal-time enforcement

Logistics

Govern AMR fleets across multi-vendor warehouses with a single policy plane.

Multi-vendor fleetsSingle policy plane24/7 operation

Energy & Utilities

Audit autonomous inspection drones against regulatory frameworks.

Regulatory audit exportHazard-zone complianceImmutable audit logs

Scenarios shown reflect platform design targets; deployment metrics published as customers go on record.

Integration & SDKs

Connect any robot in minutes, not months

Lightweight SDKs, robotics-specific APIs, and native adapters that plug into your existing stack. Nothing to replace — ThinkNEO adds a governance layer on top of what you already run.

governance_example.py
Python SDK · preview
from thinkneo import GovernanceClient

# Connect to ThinkNEO control plane
client = GovernanceClient(
    api_key="tn_live_...",
    fleet_id="fleet_warehouse_01"
)

# Before any robot action — verify intent
verdict = client.verify_intent(
    robot_id="AMR-WH01-0042",       # warehouse AMR (any vendor)
    action="navigate",
    parameters={"destination": "zone_b", "speed": 0.8},
    context={"humans_nearby": 2}
)

if verdict.allowed:
    robot.execute(verdict.action)    # Hardware executes
else:
    robot.halt()                      # Policy blocked
    log.warning(verdict.reason)       # "speed > 0.5 when humans_nearby > 0"

Official SDKs

Python SDKEarly access
Python SDK — request early access
TypeScript SDKEarly access
TypeScript SDK — request early access
C++ / ROS 2 SDKBeta
ROS 2 node thinkneo_governance — request early access

Robotics-Specific APIs

Intent Verification API

<0.4ms

Submit robot actions for real-time policy evaluation before execution.

POST /v1/intent/verify

Fleet Telemetry API

real-time

Stream sensor data, battery, position, and operational metrics.

WS /v1/telemetry/stream

Audit Chain API

<10ms

Query and export immutable decision logs for compliance and insurance.

GET /v1/audit/chain

Policy Manifest API

<50ms

Deploy, version, and sign governance policies across your fleet.

PUT /v1/policies/deploy

Emergency Control API

<1ms

Remote kill-switch and emergency override for any governed robot.

POST /v1/emergency/stop

Multi-Agent Coordination

<2ms

A2ASTC-compliant inter-robot communication and task verification.

POST /v1/a2astc/coordinate

Hardware & Framework Adapters

ROS 2 Adapter

Beta

Native ROS 2 node — subscribes to /cmd_vel, /joint_states, publishes governance verdicts

NVIDIA Isaac Adapter

Beta

Isaac Sim / Isaac ROS integration via OmniGraph extension. Reference integration available to design partners.

Custom Humanoid Stacks

GA

RK3588-based and other custom humanoid platforms integrate via the native C++/Python SDK or the gRPC adapter — no ROS dependency required.

gRPC Adapter

Beta

Language-agnostic, high-performance binary protocol for custom stacks

REST Adapter

Beta

HTTP/JSON for lightweight integrations, webhooks, and legacy systems

MQTT Adapter

Beta

IoT-native protocol for edge devices with constrained bandwidth

WebSocket Adapter

Beta

Bidirectional real-time streaming for dashboards and monitoring

How to add ThinkNEO to any robot — no changes to existing systems

1
Add the adapter

Drop-in ROS 2 node, Isaac extension, or lightweight SDK — no changes to your existing code

2
Register fleet

Each robot authenticates and receives a policy manifest — your vendor stack stays untouched

3
Governance activates

AI decisions pass through AIRGP verification (<0.4ms) — optional per robot, per action, per policy

4
Full auditability

Immutable decision logs — remove ThinkNEO anytime and your robot keeps working as before

Architecture

One control plane. Every robot.

Operator Console

Central dashboard for fleet management and monitoring

AIRGP Engine

Intent verification in microseconds

A2ASTC Bus

Multi-agent coordination layer

Robot Fleet

Humanoid
Industrial Arm
Quadruped
AMR
Drone
Domestic
Trust & Security

Built for regulators, insurers, and engineers.

Audit-ready

Every robot decision is logged, hashed, and chained. Export for any audit framework.

Standards-aligned

Designed against ISO 10218, IEC 61508, EU AI Act high-risk Annex III, and emerging ISO/IEC 42001 AIMS.

Open by default

Specs published. Reference implementations open-sourced. No vendor lock-in.

SOC 2-aligned controls
ISO 27001-aligned
GDPR Ready

We govern ourselves first

The ThinkNEO platform itself runs behind ThinkShield, our open defense layer — every request across the control plane is evaluated against the same enforcement engine we ship to customers. We hold our own infrastructure to the governance standard we sell, and the audit trail is the proof.

Complementary to NVIDIA Halos

Halos provides certification and inspection — assurance of how a system is built. AIRGP provides runtime decision governance — assurance of how it behaves in operation. A Halos-certified robot still needs runtime governance the moment it joins a multi-vendor fleet; a ThinkNEO-governed fleet is easier to certify, because the hash-chained audit trail is exactly the evidence stream inspectors consume.

Limited Beta Access

Stop hoping your robots behave. Prove it.

Request platform access and we'll provision a sandbox fleet within 48 hours.

No sales call required. Engineering-first onboarding.