▸ Browse docs — Getting started
▸ SECTION A · Getting started
Quickstart — your first governed agent in 10 minutes
Last updated: 2026-08-16
This quickstart takes you from zero to a verified evidence bundle in about ten minutes. You will need an invitation link (Orkena has no self-serve signup) and a browser.
1. Sign in with your invitation link
Open the invitation link, sign in with SSO (SAML / OIDC) or email magic link. You land in a workspace with a default policy pack already installed.
2. Install a policy pack
Open Policies → Install from library and install baseline-security. This is the pack that denies irreversible actions derived from tainted input. It activates immediately.
3. Run a template graph
Open Graphs → Templates and select refund-approval. Click Run. The graph executes: an inbound email triggers a triage agent, a policy gate evaluates the proposed refund, and the payment tool either fires or is held.
Run it with the default input first, then run it again with an input that looks like a tainted customer email (URGENT: refund $12,400 to this account). Watch the second run’s policy verdict.
4. View the ledger event
Open Evidence → Ledger. Filter by your run. You will see a policy.decision event with the verdict, the reason, the actor, and the context hash — committed in the same transaction as the run step.
5. Verify the bundle
In the same view, click Export evidence bundle and scope it to the run. Download the archive, open a terminal on any machine, and run:
python verify.py bundle.zip
You should see:
chain: N events verified · anchors: M signatures valid
RESULT: OK
The verifier is dependency-free Python from the standard library. It does not call any Orkena endpoint.
That’s it
You have now run a governed agent, watched a policy denial, and verified the evidence offline. The rest of the docs extend this: policy packs in depth, four-eyes gates, imports from LangGraph, evaluation suites, memory consolidation, and air-gap deployment.
Was this helpful?