iris.dev
IRIS Core (Tier 1)Sprites, Councils, ChainsStatic docs

Governance-first agent configuration.

IRIS manages versioned, fingerprinted agent definitions (sprites), groups them into councils with rules, and executes synchronous chains with binding gates.

Architecture
Tiered design: Core API is the source of truth.
Apps/Tools
   |
   |  (SDK / MCP / adapters)
   v
IRIS Core API (Tier 1)
   |
   |  sprites  councils  chains  gates
   v
Execution + audit trail
Quick start
Create a sprite via the REST API.
curl -s http://localhost:8000/v1/sprites   -H 'Content-Type: application/json'   -d '{
    "name": "SOL-FORGE-01",
    "version": "1.0.0",
    "role": "architect",
    "capabilities": [{"name":"code_generation","description":"Generate production code","scope":"council"}],
    "system_prompt": "You are FORGE..."
  }'
Docs
OpenAPI-backed reference and explorer.
Open API explorer
Guides
First sprite, testing, deployment runbooks.
Follow the guides
Examples
Copy-paste integrations and starter repos.
Browse examples