Skip to content

Act 01 · Intent declared

An autonomous agent has decided to act.

Before anything happens at the runtime boundary, the agent declares its intent in natural language. This is the only thing that has happened so far. No token. No action. No effect.

// Incoming intent · agent declared

Deploy the authentication service to production.

AGENT claude-code-sonnet-4-6 · ACTOR ops@acme-corp.io · TENANT acme-corp

Act 02 · Compilation

The agent’s prose becomes a typed intent.

Natural language is interpreted by the Large Intent Model. Hypotheses are ranked by confidence. A structured IntentRequest is produced — taxonomy-anchored, schema-validated, ready for evaluation.

Natural Language InputSOURCE

Deploy the authentication service to production.

LIM · 0.94
Compiled IntentRequestTYPED
{
  "intentType": "sdlc.deploy.production",
  "proposedAction": "deploy",
  "targetSystem": "acme-corp/auth-svc",
  "adapterId": "github-actions-adapter",
  "riskContext": {
    "baseRiskScore": 72,
    "touchesProduction": true
  } }

Act 03 · Conformance

The intent finds its place in your declared process.

You declared the steps. Intended matches each intent against your business process and scores sequence conformance. Out-of-order actions are surfaced before execution — not after.

01
Engineer opens PR
02
CI suite green
03
Reviewer approves
04
Deploy to production
05
Health check passes
06
Notify stakeholders
Sequence position
04 / 06
Coverage
1.00
Score · ✓ matches process
0.94

Act 04 · Decision

A verdict is reached. Nothing happens automatically.

Your policy set is evaluated against the intent. Each clause fires or passes. The decision is a single verdict — ALLOW, REQUIRE_APPROVAL, DENY — and the rationale is preserved.

  • 01risk.policy_compliant == falseDENYPASSED
  • 02risk.score 90DENYPASSED
  • 03risk.touches_production == true REQUIRE_APPROVALFIRED
  • 04lim_confidence < 0.84ESCALATEPASSED

Authority Decision

REQUIRE_APPROVAL

Reason · production-touching deploy outside change window
Approver pool · approver, admin
Required approvals · 1

Act 05 · Minting

An Authority Token is signed into existence.

Pending approval, a cryptographic Authority Token is minted — Ed25519-signed, scoped to one action, single-use, with a hard expiry. Nothing executes without it. Watch it form.

Authority Token · EdDSA · single-use · 5 min ttltyp: JWT
awaiting mint signal…
01HEADER
02PAYLOAD · CLAIMS
03SIGNATURE · EdDSA
Issued · LOCALExpires · LOCALVerify · kid ·

Act 06 · Presentation

The token reaches the gate.

The token travels to the connector at the execution boundary. The connector verifies it — not Intended. If it holds, the gate opens. If anything is off, the action is refused there, in the target system itself.

Authority Token

minting…
action · sdlc.deploy.production
scope · acme-corp/auth-svc
single-use · true
issued-by · authority.intended.so

GitHub Actions Connector · verification

  • Signature verifies against public keyPASS
  • Token within TTL (5 min)PASS
  • Intent hash matches payloadPASS
  • Not present in revocation registryPASS
Gate opens · workflow_dispatch permitted

Act 07 · Audit chain

Every decision joins an immutable chain.

The intent, the hypothesis, the policies that fired, the token, the connector verification — every step is sealed and hash-linked to the prior. Any future read can reconstruct the complete reasoning behind any autonomous action.

#01-04-2026-58213
action sdlc.deploy.production · decision REQUIRE_APPROVAL → ALLOW
hash 0x f2a9…b41c
prev 0xa18c2f9e…41b80c
JUST WITNESSED
#01-04-2026-58212
action sec.access.admin-panel · decision DENY
hash 0xa18c2f9e…41b80c
prev 0x83df1e4a…092ad7
SEALED
#01-04-2026-58211
action infra.scale.pods · decision ALLOW
hash 0x83df1e4a…092ad7
prev 0x4f17ab92…ce63d1
SEALED
#01-04-2026-58210
action fin.expense.submit · decision ALLOW
hash 0x4f17ab92…ce63d1
prev 0x7c9e22f1…5a4408
SEALED
#01-04-2026-58209
action obs.alert.acknowledge · decision ALLOW
hash 0x7c9e22f1…5a4408
prev 0x6a3408b0…1e9c33
SEALED

Total elapsed time · in production

0ms

And the whole ceremony you just witnessed runs ~50× faster than you can blink.

LIM compilation
18 ms
p50, with caching
Conformance scoring
6 ms
first-order markov + glob match
Policy evaluation
4 ms
4 clauses, in-memory
EdDSA mint · measured here
1 ms
Ed25519, your browser, just now
Connector verify
12 ms
signature + hash + ttl
Audit chain commit
8 ms
hash + append
TOTAL
49 ms
end-to-end

Cryptographic mint measured in this session · other figures are production p50 with realistic seeded data

Authority Token #1 · issued in your session

You have witnessed one decision.

Nothing on this page was illustrated. Every artifact you saw is the actual thing: an EdDSA (Ed25519) signed JWT, verified in your browser, a real audit hash chain, a real policy evaluation, a real conformance score. Take the token with you.

Your Authority TokenEdDSA · Ed25519 · single-use · ttl 05:00

How it works | Intended