ODIN Product Suite
Composable primitives that form the Trust Layer for the Agent Economy: secure delivery, deterministic policy, and verifiable state exchange.
Router (OSE)
Signed webhook relay: normalize upstream events, re‑sign per tenant, deliver with retries, DLQ & cryptographic receipt bundles.
- One endpoint swap
- Hash‑linked provenance receipts
- Idempotent delivery & retries
HEL Policy Engine
Deterministic in‑process egress control for AI / LLM calls. Profiles + allowlists + optional Rego for auditable allow/deny decisions.
- Pure function evaluation
- Profile + predicate layering
- Decision receipts & replay
OPE – Proof Envelope
Deterministic, signed JSON envelope for verifiable agent & service hand‑offs. Tamper‑evident provenance for any payload.
- Canonical JSON + CID
- Ed25519 signature recipe
- Chain & bundle friendly
OMB – Meter & Billing
Verifiable usage metering & signed export bundles. Independent customer reconciliation.
- Signed Usage Records (SUR)
- Bundle export signatures
- Optional Stripe stubs
HEL Policy Engine
Lightweight Host Enforcement Layer providing deterministic egress decisions before an AI model call leaves your process. Start with profiles & allowlists; opt‑in advanced predicates or Rego only when needed.
- Profiles: env / tenant / service layering
- Model / vendor allow & deny sets
- Latency, token, cost ceilings
- Optional OPA (Rego) fallback phase
- Replay + diff after profile edits
hel/profile.yaml
allow_models: ["gpt-4o", "claude-3.5", "gemini-1.5-pro"]
max_latency_ms: 4000
max_tokens: 16000
max_cost_usd: 0.50
# optional Rego gate only if base rules passOPE – Open Proof Envelope
Portable, tamper‑evident container for any JSON payload exchanged between agents, services, or humans. Guarantees provenance via canonicalization + CID + signature.
- Deterministic canonical JSON hashing
- Ed25519 compact signature recipe
- Trace + timestamp binding
- Composable chains / bundles
- Structured verify error codes
envelope.json
{"version":1,"payload_type":"agent_step","cid":"sha256:…","sig_alg":"ed25519","sig":"...","payload":{}}OMB – Meter & Billing
Generate Signed Usage Records & export bundles your customers can verify offline. Provide transparent usage‑based billing primitives without vendor lock‑in.
- Canonical JSON → deterministic sha256 CIDs
- Per record + bundle Ed25519 signatures
- Append‑only JSONL / pluggable storage
- FastAPI reference service + CLI
- Optional Stripe monetization adapters
sur.json
{"resource":"llm_tokens","quantity":5120,"cid":"sha256:…","sig":"..."}