Documentation

Full language reference and guides.

SkCC

Skills Compiler.

EvoBench

Agent benchmark suite.

EpiContext

Evolutionary context management.

Nexa Organization

All Nexa projects.

Author

Owen — creator of Nexa.

← Back to Blog
2026.03.10

Nexa Goes Open Source — v0.9-alpha Release

Open Source v0.9 Community

Today, we're opening the doors. After two months of intense development, Nexa v0.9-alpha is now open source under the GNU Affero General Public License v3.0 (AGPL-3.0).

Why AGPL-3.0?

We chose AGPL-3.0 deliberately. As an agent programming language, Nexa sits at the intersection of AI safety and developer freedom. AGPL-3.0 ensures that:

This is the same license chosen by MongoDB, Grafana, and MinIO — projects that want to build sustainable open-source ecosystems while preventing cloud providers from exploiting their work.

What's in v0.9-alpha?

This first public release includes:

Getting Started in 30 Seconds

# Install
pip install nexa

# Create your first agent
cat > hello.nx << 'EOF'
agent Greeter {
    prompt: "Greet the user warmly."
}
flow main {
    result = Greeter.run("Hello!");
    print(result);
}
EOF

# Run it
nexa run hello.nx

Community Response

Within the first week of release, we've seen:

The Road Ahead

v0.9-alpha is just the beginning. Our roadmap for the coming months:

We're also beginning work on the Rust AVM (Agent Virtual Machine) — a high-performance runtime with WASM sandboxing that will eventually replace the Python transpiler backend for production deployments.

Join Us

Nexa is a community project. Whether you're an AI researcher tired of LangChain boilerplate, a systems programmer interested in language design, or a developer who wants to build the next generation of autonomous agents — we'd love your contribution.

Star the repo, try the examples, open an issue, or submit a PR. Let's build the future of agent programming together.


— Owen, March 2026