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 v2.0 — 9 tactics, 25 techniques, 25 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
93 KB
JSON
{}
Technique Database
All 25 techniques with severity, case studies, OWASP mapping
24 KB
JSON
{}
Regulatory Cross-Reference
NIST AI RMF, EU AI Act, OWASP LLM Top 10 mapping
15 KB
JSON
{}
ATM-1 Mapping
Bidirectional mapping between ATX-1 techniques and MITRE ATT&CK
8 KB
JSON
{}
ACF-1 Counterfactual Bundle
What-if scenarios for technique interactions and governance outcomes
75 KB
JSON
{}
Technique JSON Schema
Validation schema for technique definitions
3 KB
JSON
{}
ATX-1 Index
Machine-readable index of all ATX-1 artifacts
2 KB
JSON
{}
ATT&CK Navigator Layer
Load in ATT&CK Navigator via Open Existing Layer → Upload from URL
32 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