Check, compile, run, and test Sounio programs locally.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Website Β· Playground Β· Documentation Β· Manifesto Β· Examples Β· Status Β· Contributing
Sounio is a systems programming language for epistemic computing β its type system tracks not just what your data is, but how much you should trust it. Uncertainty propagation, provenance tracking, and confidence-gated execution are built into the type system, not bolted on as libraries.
Keywords: systems programming language, scientific computing language, epistemic types, uncertainty propagation, algebraic effects, self-hosted compiler, formal verification, non-associative algebra, octonions, e-graphs.
| Pillar | Description | Key Search Terms |
|---|---|---|
| Epistemic Computing | Built-in confidence-gated execution tracking and provenance tracking. | epistemic-computing, Knowledge[T], confidence-threshold |
| Uncertainty Propagation | GUM-compliant (Guide to the Expression of Uncertainty in Measurement) error propagation. | uncertainty-propagation, GUM-compliance, error-propagation |
| Systems & Science | Native x86_64 ELF compilation, self-hosted compiler loop, PTX/GPU acceleration. | systems-programming, scientific-computing, ptx-codegen |
| Algebraic Effects | Explicit side-effects declarations (IO, Mut, Div, Panic, Alloc). | algebraic-effects, effect-system, effects-with |
| Mathematical Rigor | Non-associative octonion basis associators, formalized Lean 4 proofs of invariants. | non-associative-algebra, octonions, lean4-proofs |
| Dimensional Analysis | Compile-time unit checking (VAR_UNIT_DIM) to prevent physical dimension errors. | dimensional-analysis, unit-types, compile-time-units |
The compiler is self-hosted: Sounio compiles itself, bootstrapped from a 2000-line C compiler through a multi-stage chain to a true fixed-point where stage N and stage N+1 produce bit-identical binaries. It was used to computationally verify a new result in algebra β that the count of nonzero octonion basis associators equals |PSL(2,7)| = 168 β now submitted for publication.
This is an active research project, not a production release. Read the honest status before using it for anything serious.
The canonical Sounio checkout now includes a bounded cross-repo example under:
examples/cognitive_ossm/This lane is paired with the repository:
github.com/agourakis82/hyperbolic-semantic-networksWorkflow split and current boundary:
.sio implementation scaffolding and separately executable epistemic receipts.data/cpc2026/sounio_input/.check, but current native-v2 compilation is blocked. Historical native n=100/n=1000 JSON files are excluded from parity claims.From the Sounio repo root:
./sounio-whereami --quick/workspace/sounio as the active remote-first workspace pathbash scripts/dev/measure_repo_scale.shThis repo now ships a root llms.txt for model-aware tools and a reproducible Hugging Face-style dataset export built from the Sounio test suite.
The current published dataset lives in the maintainer namespace as a public mirror until the sounio-lang Hugging Face org namespace is ready.
Epistemic types as first-class citizens. Every scientific measurement has uncertainty. Most languages ignore this. Sounio's type system includes Knowledge[T] with built-in confidence, provenance tracking, and automatic GUM-compliant uncertainty propagation. The compiler can enforce confidence thresholds at compile time β a function requiring Ξ΅ >= 0.82 rejects under-confident data before any code runs. No equivalent system exists in any production language.
Self-hosted compiler. The compiler bootstrapped from C through a multi-stage chain (stage0.c β boot2g.sio β self-hosted) to a true fixed-point. The default workflow is now native-only: bin/souc compiles .sio sources to temporary or named ELFs via the Madaros self-hosted engine and executes those binaries directly.
Not a Rust/Julia dialect. Own syntax (&! not &mut, var not let mut), own semantics (algebraic effects, linear types, dimensional analysis), own philosophy (epistemic computing for science).
Full pipeline: tests/run-pass/vancomycin_propagation.sio β real ASHP 2020 vancomycin dosing with 5-step GUM propagation.
The compiler rejects this before any code runs β a hard patient-safety guarantee. See: tests/compile-fail/vancomycin_low_conf.sio
More examples: examples/epistemic_bmi.sio, docs/guide/SOUNIO_QUICK_START.md
This is an active research repository. Public claims are registry-backed; see docs/serious-language/public-claim-registry.v1.tsv (authoritative for every feature's maturity tier).
PL adoption audit (2026-05-27): docs/audit/PL_ADOPTION_AUDIT_2026-05-27.md β bone-honest stocktake of what a stranger cloning this repo will find, with live probes. The two biggest adopter-unlock gaps are (G1) closing the multi-module bundle compile and (G2) the CLI exit-code contract (G2 fixed 2026-05-27 in this commit).
Registry rows you should read before drawing conclusions:
stdlib.surface = validated_research (bounded support contract only; not broad all-file callability) Β· tooling.editor = validated_research (checked formatter, REPL, preview LSP, and editor wiring; not mature IDE support) Β· tooling.package = validated_research (local packages only; no public registry) Β· closures.lambdas = stale_conflicting (spec Β§4.7.2 non-normative) Β· generics.{structs,functions,traits} = prototype Β· binary.source = validated_research (checked Madaros prebuilt is built from the modular tree; lean_single.sio remains the bootstrap seed) Β· platform.windows = prototype.
Scale (measured 2026-07-11): 6,130 tracked .sio files, ~2.21M lines (bash scripts/dev/measure_repo_scale.sh). The self-hosted compiler alone is ~555k lines β not a small experiment. Full audit: docs/audit/README.md Β· SCALE.md.
| Component | Status | Evidence |
|---|---|---|
| Epistemic core | Knowledge[T] + GUM + provenance | Named package / conformance gates |
| Self-hosted compiler | Lexer β codegen; fixed-point bootstrap | lean_single fixed-point + native-v2 spine gates |
| Ontology | Generated bundles + validation harness | run_ontology_validation.sh + compile gates |
| Native codegen | Linux ELF; Mach-O artifact lane | Self-host + native-v2 gates |
| Core stdlib slices | Stats, linalg, ODE, etc. | stdlib_science_pipeline_gate, reliability inventory |
| Language server | LSP 3.17 subset | Release binary + protocol tests (prototype per registry) |
| Component | Reality |
|---|---|
| ~46% of stdlib modules | Classified scaffold in audit A.2 β code without executable proof |
| 32 stdlib smoke tests | Print FOO_OK only; do not exercise module logic |
| 129 CI gate scripts | Most are not on make check / GitHub CI (audit A.4) |
| GPU CLI path | PTX/kaxi code exists; end-to-end CLI path incomplete |
| Theorem prover / async / geometry | Large or stub surfaces β see module audit JSON |
| Tier | Modules | Meaning |
|---|---|---|
| works | 66 | Tests, gates, or mass with executable evidence |
| scaffold | 59 | Code present; no direct executable proof in tree |
| doc-only roots | 3 | Non-module files at stdlib/ root |
Do not cite 814/910 (89%) as "stdlib completeness" β that is harness inventory, mixes real tests with smoke placeholders, and differs from the reliability gate inventory. See audit artifacts under artifacts/audit/.
While developing Sounio's octonion multiplication backend, we discovered and proved a combinatorial fact that appears not to have been explicitly stated in the literature:
The number of ordered triples (i, j, k) in {1,...,7}^3 for which the octonion basis associator [e_i, e_j, e_k] is nonzero is exactly 168 = |PSL(2,7)|.
The decomposition is 343 = 133 (repeated indices) + 42 (Fano-line triples) + 168 (non-collinear triples). We also report that sedenion nonzero associator counts are multiples of 168, and that the primitive zero-divisor pair count 336 = 2 x 168.
The result was verified computationally in Sounio and independently reproduced in Python/NumPy.
Paper: "The 168 Theorem: PSL(2,7) Governs Non-Associativity and Zero-Divisor Structure in the Cayley-Dickson Tower" β Agourakis & Gerenutti (2026). Submitted to Advances in Applied Clifford Algebras.
This checkout ships checked self-hosted compiler artifacts for Linux x86_64, macOS arm64, and macOS x86_64 behind the host-aware bin/souc launcher, which is the official compiler entrypoint and routes to Madaros by default. No Rust build step is required for the default workflow.
If you need the legacy bootstrap path explicitly:
For detailed setup: INSTALL.md Β· docs/guide/MINIMUM_VIABLE_SOUNIO.md
The Sounio language server (bin/sounio-lsp) ships with the checkout and is the same binary published at
sounio-lsp-v0.3.0-r1. Point any LSP-aware editor (VS Code, Neovim, Helix, Zed, etc.) at the binary with file-type .sio. Capabilities and the change log live in tools/lsp/CHANGELOG.md; Sprint-2 backlog in tools/lsp/SPRINT2_TODO.md.
Pipeline: Source β Lexer β Parser β AST β Check β HIR β SIR β HLIR (SSA) β Codegen
| Directory | Purpose |
|---|---|
self-hosted/lexer/, parser/ | Frontend (tokenizer, recursive descent) |
self-hosted/check/, types/ | Bidirectional type inference + algebraic effects |
self-hosted/ir/ | IR lowering, optimization, e-graph equality saturation |
self-hosted/native/ | Native ELF and Mach-O emission in the current self-hosted lane |
self-hosted/compiler/ | Codegen drivers (lean, IR) |
stdlib/epistemic/ | Knowledge[T], uncertainty (GUM), provenance |
stdlib/units/ | Dimensional analysis |
bootstrap/ | stage0 (C) β boot2g β self-hosted chain |
formal/ | Lean 4 proofs (epistemic type invariants) |
tests/ | run-pass/, compile-fail/, ui/, stdlib/ |
See docs/MANIFESTO.md for the full philosophy.
Platform. This checkout ships checked self-hosted compiler artifacts for Linux x86_64, macOS arm64, and macOS x86_64 behind the bin/souc launcher. Linux x86_64 and macOS arm64 are the active first-class host lanes. The newer native-v2 aarch64 backend is still preview-grade, so Apple Silicon support in this checkout is via the self-hosted Mach-O artifact lane rather than the new preview emitter.
Native startup cost. Native execution still requires producing a host binary before launch, so there is a small startup cost compared with an in-process executor.
Launcher contract. bin/souc now provides compatibility commands for check, run, compile, build, and init. When invoked inside a directory with sounio.toml, check, run, and build resolve the project entrypoint from [[bin]].path, [project].entry, or src/main.sio. Broader omega workflows and JIT-oriented tooling still live outside the checked self-hosted launcher lane.
Windows cross-compile. The PE/COFF backend (3,508 lines) is production-grade. Use --target x86_64-windows to emit Windows binaries. No pre-built .exe is shipped in this checkout.
REPL. The checked self-hosted launcher supports souc repl for a file-backed interactive loop.
Debug flags. --show-ast and --show-types are supported as pass-through flags on the checked self-hosted launcher for check, run, compile, and build.
FFI. extern "C" remains limited in scope, but the old JIT-only integer FFI failure mode is gone on the native path.
GPU. PTX codegen exists in self-hosted/gpu/ but there is no end-to-end compilation path from the CLI. SPIR-V/Metal/WGSL files exist as stubs.
Full list: docs/compiler/KNOWN_LIMITATIONS.md
If you use Sounio in academic work:
Apache-2.0. See LICENSE.
At the horizon of certainty, where ancient columns meet the endless sea.
SOUNIO
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/sounio-compiler)<a href="https://allmcps.com/mcp/sounio-compiler"><img src="https://allmcps.com/api/badge/sounio-compiler?style=directory" alt="Sounio Compiler on AllMCPs" /></a>