Resources

Papers & Documentation

Technical papers, specifications, and guides for understanding and working with the ARIA system. All materials are research/pre-release documentation.

Research Documentation

These documents describe the ARIA governance engine in active development (v0.3). The Technical Brief describes what exists and is tested. The full Technical Report covers the mathematical foundations of the CFM substrate in detail.

Examples

Quick Reference

Common operations for working with ARIA.

Running a Simulation

# Run ARIA v4 with detailed output
python tools/aria_local_loop.py \
    --core aria_v4 \
    --steps 1000 \
    --detailed \
    --output results.json

Generating Visualizations

# Generate all visualization types
python tools/aria_visualize.py \
    -i results.json \
    -m all \
    -d ./output/

Extracting Fingerprints

# Generate reference run
python tools/aria_reference_runs.py \
    --scenario baseline_quiet \
    --output-dir reference_runs

# Extract fingerprint
python tools/aria_fingerprint.py \
    --input reference_runs/baseline_quiet/aria_v4_run.json \
    --output fingerprint.json

Comparing Fingerprints

# Compare two fingerprints for regression detection
python tools/aria_fingerprint.py \
    --compare baseline.json new.json

# Output shows any differences >5% relative magnitude

API Reference

API & Payload Reference

Real payloads from the ARIA governance API. These are actual response shapes — not mock data.

Health Check

GET /v1/cfm/readiness — Returns system readiness status.

{
  "status": "ok",
  "mode": "live",
  "csc_invariants_count": 17,
  "pipeline_stages": 19,
  "uptime_seconds": 3421
}

Gate Decision

POST /v1/cfm/chat/direct — Full governance pipeline decision.

{
  "gate_decision": "ALLOW",
  "reason_codes": ["BENIGN_GREETING"],
  "coherence": 0.742,
  "audit_hash": "sha256:a1b2c3d4...",
  "truth_hash": "sha256:e5f6a7b8...",
  "evidence_bundle_id": "eb-20260223-001",
  "response": "Hello! How can I help you today?"
}

Evidence Bundle

Every gate decision produces a cryptographic evidence bundle.

{
  "bundle_id": "eb-20260223-001",
  "gate_decision": "ALLOW",
  "reason_codes": ["BENIGN_GREETING"],
  "state_snapshot": {
    "coherence": 0.742,
    "energy": 0.581,
    "stability": 0.893,
    "state_hash": "sha256:f9e8d7c6..."
  },
  "audit_hash": "sha256:a1b2c3d4...",
  "truth_hash": "sha256:e5f6a7b8...",
  "replay_token": "rpl-a1b2c3d4",
  "invariant_results": [
    {"name": "BOUNDED_STATE", "passed": true},
    {"name": "DETERMINISTIC_OUTPUT", "passed": true}
  ],
  "dep_stage_count": 19,
  "timestamp": "2026-02-23T14:30:00Z"
}

State Vector Schema

The 11 CFM state variables — all bounded in [0, 1].

{
  "coherence_slow":      0.742,  // Slow coherence baseline
  "coherence_fast":      0.681,  // Fast coherence fluctuations
  "energy_potential":    0.581,  // Stored activation potential
  "energy_flux":         0.423,  // Energy flow rate
  "stability_envelope":  0.893,  // Stability boundary
  "instability_pulse":   0.112,  // Instability event signal
  "phase_global":        0.534,  // Global oscillation phase
  "phase_local":         0.467,  // Local phase modulation
  "alignment_field":     0.721,  // Cross-channel sync strength
  "alignment_direction": 0.658,  // Alignment direction (slow)
  "resonance_index":     0.619   // Cross-channel coupling
}

Governance Gate Thresholds

Gate decisions are threshold comparisons on measured coherence. Thresholds derive from the golden ratio.

DecisionThresholdValueMeaning
ALLOWφ¹≈ 0.618Coherence above threshold — input passes
DAMPENφ²≈ 0.382Partial restriction — response constrained
BLOCKφ³≈ 0.236Coherence below threshold — input blocked

Questions?

For questions about the documentation or research collaboration inquiries, please reach out through the contact page.