Prerequisites
- curl (any version)
- An email address
- 10 minutes
No prior AGTS knowledge required. This guide explains each step as you go.
Step 1 — Register (30 seconds)
The POST /auto-register endpoint provisions your governance identity in under 2 seconds. It generates your tenant_id (your account identifier) and api_key (your authentication token).
Save your api_key — you'll use it in every subsequent request. If you lose it, rotate it at POST /api-key/rotate.
Step 2 — Prepare your governance evidence
AGTS records why you authorized a decision, not just that you did. You provide evidence for five gates. Here's the minimal case — a chatbot response policy:
What are the evidence hashes?
They are SHA-256 hashes of the actual artifacts used in your evaluation. You keep the originals. We store only the hashes. An auditor requesting proof recomputes the hash from your originals and checks it matches.
dataset_provenance_hash: sha256sum your_test_dataset.json
evaluation_trace_hash: sha256sum eval_run_output.log
ablation_execution_log_hash: sha256sum ablation_results.json
capability_certificate_hash: sha256sum model_card.md
For a first test, use any 64-character hex strings. The governance pipeline works identically — the hashes just won't correspond to real artifacts.
Step 3 — Submit and receive your first canonical leaf
You now have a canonical leaf at index 0 in the transparency log. The governance decision is on the permanent record. Save leaf_hash and artifact_hash — you'll use them in the next steps.
Step 4 — Verify the leaf
Verification proves your leaf is in the Merkle tree under the current Signed Tree Head. It uses only SHA-256 operations — no trust in ObligationSign required.
The inclusion proof contains the Merkle audit path — a sequence of sibling hashes that, combined with your leaf hash, reproduce the Merkle root in the STH. You can verify this independently.
Step 5 — Replay the decision
The replay shows every gate: what evidence was provided, what the result was, why the action was authorized. This permalink is permanent and shareable — send it to your auditor or regulator directly.
Step 6 — Get your compliance report
Returns AGTS_COMPLIANCE_REPORT_V1 — six claims (RTR-C001 through RTR-C006), 17 sub-articles, mapping to EU AI Act, DORA, Basel III, and ISO 42001. On the free tier, the report is generated but export is locked. On L2+, export as JSON or Markdown.
Step 7 — Wire into your CI/CD pipeline
Step 8 — Understand your trial limits and upgrade path
Your free trial gives you 5 canonical leaves within 72 hours. Each leaf is cryptographically identical to production leaves — trial leaves are in the same log. You don't start over when you upgrade; you continue the same governance chain.
What you're missing on the free tier: the external 3-of-4 validator quorum, the hardware-backed Sovereign Authority signature, and compliance report export. Those are L2 features. The compliance report shows you exactly which claims are amber and what infrastructure resolves them.