Governance Data

Governance Data

Machine-readable governance artifacts for the AEGIS ecosystem. Structured datasets, schemas, and threat intelligence for automated consumption.

Humans read docs at aegis-docs.com — machines consume data here.

ATX-1 Threat Matrix

AEGIS Threat Matrix v1.0 — 9 tactics, 20 techniques, 20 mitigations. Empirically grounded in the Agents of Chaos study. Available in STIX 2.1 and structured JSON.

{}
STIX 2.1 Bundle
Complete taxonomy — tactics, techniques, mitigations, relationships
61 KB
JSON
{}
Technique Database
All 20 techniques with severity, case studies, OWASP mapping
19 KB
JSON
{}
Regulatory Cross-Reference
NIST AI RMF, EU AI Act, OWASP LLM Top 10 mapping
13 KB
JSON
{}
Technique JSON Schema
Validation schema for technique definitions
2.5 KB
JSON
{}
ATX-1 Index
Machine-readable index of all ATX-1 artifacts
1.5 KB
JSON

Consume

Fetch the STIX bundle
curl https://aegis-governance.com/atx-1/stix-bundle.json | jq '.objects[] | select(.type == "attack-pattern") | .name'
Python — load techniques
import json, urllib.request

url = "https://aegis-governance.com/atx-1/techniques.json"
techniques = json.loads(urllib.request.urlopen(url).read())

for t in techniques:
    print(f"{t['id']}: {t['name']} ({t['severity']})")
Validate against schema
npx ajv validate -s https://aegis-governance.com/schemas/atx-technique.schema.json -d techniques.json

Ecosystem

Documentation

Human-readable specs, architecture, API reference, guides

Constitution

The governance charter — 11 articles defining AI governance requirements

Demo API

Live governance runtime — submit proposals, see all four outcomes

Federation

Decentralized governance intelligence sharing via AT Protocol

Initiative

Organization home — mission, policy, press

Source

Governance specs, ATX-1 taxonomy, schemas — Apache 2.0