Skip to content

Developers

Build against intent verification.

Two paths: clone IntendedOps and self-host the entire governed back office, or request platform access to build on the commercial Intended runtime with full SDK support. The governance contract is the same across both — you can start on one and upgrade to the other without code changes.

Quick example

bash
curl -X POST https://api.intended.so/intent \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tenantId": "tenant-acme",
    "actor": { "id": "github-actions", "type": "service" },
    "targetSystem": "acme/frontend",
    "proposedAction": "deploy.production",
    "riskContext": {
      "baseRiskScore": 45,
      "policyCompliant": true,
      "requiresPrivilegedAccess": false,
      "touchesProduction": true,
      "containsSensitiveData": false,
      "github": { "owner": "acme", "repo": "frontend", "ref": "main" }
    }
  }'

# Same path as services/api/openapi.yaml — POST /intent (no /v1 prefix on the public API host).
# Execution after authorization uses POST /execute with a valid authority token.
One call: verify intent, receive a decision, issue authority, append evidence.

Build stack

Open Source

IntendedOps (the governed back-office operating system) and the Open Intent Layer (the canonical taxonomy). Both Apache 2.0. Both self-hostable today.

Quickstart

Two paths to your first governed action: clone IntendedOps for the open source route, or request platform access for the commercial runtime.

Documentation

Concepts, guides, and reference for integrating intent verification into agentic systems and runtime boundaries.

API Reference

REST API reference for the Intended platform runtime — verification, execution, escalation workflows, audit retrieval.

Platform SDKs

TypeScript, Python, Go, CLI, connector SDK, MCP gateway, Kubernetes admission, Terraform provider — distributed to platform customers.

Open Intent Layer

Canonical taxonomy for AI agent actions across digital + physical processes. 29 domains, 173 categories, stable OIL- identifiers. Apache 2.0.

Runtime facts

< 50ms p99

Decision latency

173 categories / 29 domains

Open Intent Layer

RS256 (per-tenant keys)

Token algorithm

SHA-256 hash chain

Audit integrity

Go from raw action to verified execution.

Developers | Intended