Metadata-Version: 2.4
Name: aether9
Version: 3.1.1
Summary: Aether-9: VM-based bytecode execution with artifact inspection, verification, and runtime diagnostics
Author: Ahmed Harb Akeely
License-Expression: MIT
Keywords: aether9,dsl,bytecode,vm,artifact,verification,runtime-diagnostics
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"

# Aether-9 3.1.1

Aether-9 is a VM-based execution framework with bytecode artifacts, inspection tooling, verification sidecars, and policy-aware runtime controls.

## 3.1.1 stabilization highlights

- Runtime diagnostics hardening with richer VM error categories, frame context, stack tail, and recent trace output.
- Examples pack covering learning, runtime, and positioning scenarios.
- Developer docs pack covering CLI, artifacts, VM architecture, security model, examples, and diagnostics.
- Validation package with benchmark methodology, scenario matrix, integration review notes, and reproducible result files.
- CLI stabilization including `aether --version`.

## Selected validation snapshot

- `compile_to_bytecode` average: **0.788 ms**
- `vm_run_from_binary` average: **1.0217 ms**
- `inspect_demo.a9` JSON artifact size: **3086 bytes**
- `inspect_demo.a9` binary artifact size: **1639 bytes**

## Quick start

```bash
pip install aether9==3.1.1
```

```bash
aether export program.a9 --format binary
aether inspect program.a9b -v
aether disasm program.a9b -v
aether vm program.a9b -v
```
