Æon Framework
Standards-First. Safety-Native.

The lightweight Neuro-Symbolic runtime. Solving the Stochastic Problem in Critical Infrastructure with the Unified A2A Standard, MCP, and Axioms.

from aeon import Agent
from aeon.protocols import A2A, MCP

# 1. Define Agent with Unified Standards
controller = Agent(
    name="Reactor_Overseer_01",
    model="google/gemini-2.0-flash-001",
    protocols=[
        A2A(version="unified-1.0"),
        MCP(servers=["industrial_sensor.py"])
    ]
)

# 2. Define Axiom (The Deterministic System 2)
@controller.axiom(on_violation="OVERRIDE")
def enforce_thermal_limits(args):
    if args.get("value", 0) > 400:
        return {"value": 400, "target_id": "core_temp"}
    return True

await controller.start()

The Trust Stack.

Æon unifies the fragmented agent ecosystem by implementing industry winning standards natively.

connectivity / a2a

Unified A2A

The new Linux Foundation standard merging IBM ACP & Google A2A. Universal negotiation.

capabilities / mcp

MCP Native

Universal tool integration using Anthropic's Model Context Protocol.

governance / axioms

Æon Axioms

Deterministic, code-level guardrails that LLMs cannot bypass via prompt injection.

experience / python

Pythonic Simplicity

Zero boilerplate. Decorator-based syntax. Intuitive for any Python developer.

ultra / routing

Intelligent Routing

Pattern-based message routing with 5 strategies and 6 filter types for optimal message dispatch.

ultra / gateway

Central Gateway

Unified communication hub managing sessions, connections, and multi-protocol integration.

ultra / security

Enterprise Security

Policy-based authorization, token lifecycle management, and encryption support.

ultra / health

System Monitoring

Real-time health checks, metrics collection, and comprehensive diagnostics.

ultra / cache

Performance Cache

LRU caching, distributed replication, and TTL-based expiration for optimization.

Visual Feedback.

Observe o "Sistema 2" (Axioma) interceptando o "Sistema 1" (LLM) em tempo real. Tenha total visibilidade sobre as fronteiras de decisão do seu agente.

View Terminal Demo > [LOG STATUS: VERIFIED]
aeon-runtime
AEON KERNEL v0.3.0-ULTRA | Reactor_Overseer_01 ---------------------------------------- [+] Hive: Initializing A2A Node... [>] Hive: A2A Beacon Active (Std: unified-1.0) [+] Synapse: Establishing neural links... [+] Synapse: Connected. Tools: ['read_sensor', 'set_actuator'] [+] Gateway: Central hub initialized (Session Manager active) [+] Router: Pattern matching engine ready (5 strategies) [+] Security: TokenManager active with policy-based auth [+] Health: System monitoring active (Real-time metrics) [+] Cache: LRU cache initialized (10000 max items)
[>] User Input: Set actuator core_temp to 550.0. [>] Router: Message matched to priority handler [>] Security: Token validated. Scopes: [read:data, write:results] [>] Cortex: Sending request to gemini-2.0... [i] Intent: Call set_actuator with {'value': 550}
[!] AXIOM ALERT: 550C is unsafe. Clamping to 400.0C.
[<] Tool Output: SUCCESS: core_temp set to 400.0 [✓] Health: All systems operational (16 subsystems active) [✓] Cache: Result stored (TTL: 1 hour)
AEON KERNEL SHUTDOWN

Choose Your Path.

The Æon Framework adapts to your use case. From personal AI assistants to mission-critical industrial infrastructure.

💡

Personal AI Assistant

Your own personal assistant powered by Æon. Simple, intuitive, and designed for individual creators, developers, and thinkers.

  • ✓ Local Ollama + Cloud providers (OpenAI, OpenRouter)
  • ✓ Multi-platform integrations (Telegram, Discord, Slack)
  • ✓ MCP tools ecosystem (YouTube, Google Maps, etc)
  • ✓ Personal axioms for your own rules
  • ✓ Journaling, research, and knowledge management
Explore Documentation →
14 Working Examples
CRITICAL
🏭

Industrial Safety-Critical

Mission-critical systems for petroleum, aerospace, nuclear. Axioms as the deterministic foundation for safety and compliance.

  • ✓ SIL 1-4 Certification paths (IEC 61508, DO-178C)
  • ✓ Deterministic axioms as core, not auxiliary
  • ✓ Triple-Modular Redundancy (TMR) architecture
  • ✓ Immutable audit trails with cryptographic signing
  • ✓ Real case studies: Oil/Gas, Aerospace, Nuclear
Critical Systems Guide →
Safety-Verified Architecture

Why Axioms Matter: Traditional LLMs are probabilistic. In critical systems where human lives depend on decisions, you need deterministic code-level safety rules that LLMs cannot bypass through prompt injection. Æon's Axioms solve this fundamental gap.