AIGov

Documentation

What is AIGov?Contact for private pilotSign inSupport / contact

Audit-backed governance for AI systems

AIGov records lifecycle evidence, evaluates policy, and returns VALID, INVALID, or BLOCKED per run. Start with What is AIGov? or the 5-minute quickstart.

Start here

Evidence lifecycle

How an evidence event moves from emission to an auditable ledger record.

Implementation flow

  1. 1Emit evidencePOST /evidence
  2. 2Policy + ledgerHash-chained append
  3. 3Compliance summaryVALID / INVALID / BLOCKED
  4. 4CI gate or exportBlock deploy · bundle

Capability matrix

AIGov Core (self-host) vs proprietary hosted platform and enterprise layers. Full comparison →

CapabilityAIGov CoreHostedEnterprise
Hash-chained audit ledger
POST /evidence + policy enforcement
CI compliance summary gate
API key → tenant isolation
JWT /api/* workflow & assessments
Operator dashboard (govbase.dev)
Stripe billing (operator-configured)

Compliance verdict

Summarize prerequisites for VALID — same contract as CI gates.

Preview
AIGov try console
local
Try thisCopy and run in your environment

GET /compliance-summary

curl -sS "$GOVAI_AUDIT_BASE_URL/compliance-summary?run_id=demo-run" \
  -H "Authorization: Bearer $GOVAI_API_KEY"
View expected output
{ "verdict": "VALID" | "INVALID" | "BLOCKED", "reasons": […] }

Try it

AIGov try console
requires API key
Try thisCopy and run in your environment

Check compliance for a run

Fetch the authoritative compliance-summary verdict for a run_id after evidence is recorded.

export GOVAI_AUDIT_BASE_URL=https://audit.example.com
export GOVAI_API_KEY=your_key
export GOVAI_RUN_ID=your_run_id
curl -sS "$GOVAI_AUDIT_BASE_URL/compliance-summary?run_id=$GOVAI_RUN_ID" \
  -H "Authorization: Bearer $GOVAI_API_KEY"
View expected output
{"verdict":"VALID"|"INVALID"|"BLOCKED",...}

Next step5-minute quickstart

Product

What AIGov is and why it matters

Developers

Quickstarts, integrations, and contributing

Architecture

System design and onboarding flow

Compliance & trust

Governance, regulatory mapping, trust center

Enterprise

Buyers, pilots, and platform packaging

Reference

API, CLI, and Functions 2.0

Operations

Deployment and security operations

Canonical Markdown sources live in the repository under docs/. Full index: docs/index.md.

← Back to home