Skip to content
Jonathan D.A. Jewell edited this page Aug 7, 2026 · 4 revisions

ECHIDNA Wiki

ECHIDNA — Extensible Cognitive Hybrid Intelligence for Deductive Neural Assistance — is a trust-hardened neurosymbolic theorem-proving platform with a large multi-backend prover surface, of which 12 core backends are exposed by the default API. Counts differ depending on what is being counted; docs/PROVER_COUNT.md is canonical and carries the commands that reproduce each figure.

License: the repository declares AGPL-3.0-or-later (LICENSE, Cargo.toml). Note that per-file SPDX-License-Identifier headers across the source tree still read MPL-2.0, and NOTICE still describes the project as MPL-2.0 — this inconsistency is open licensing debt, tracked in docs/DEBT.md. Until it is reconciled by the owner, do not rely on this page for the licence terms; read LICENSE and seek clarification.

Release history: CHANGELOG.md; semver pin in Cargo.toml.

Quick navigation

Canonical in-repo documents

When the wiki and the repo disagree, the repo wins:

Core invariants

  1. ML suggests; provers verify. Neural components rank, route, propose. Formal provers carry the trust.
  2. Trust is checked, not asserted. Solver binaries are SHAKE3-512 / BLAKE3 integrity-checked; certificates (Alethe, DRAT/LRAT, TSTP) are independently reproduced where formats allow.

Key concepts

  • 12 core backends exposed by default; the wider surface (external prover bindings plus TypeChecker disciplines routed via TypedWasm Sigma) is reachable through explicit ProverKind selection. Figures and their denominators: docs/PROVER_COUNT.md.
  • 17 corpus adapters — every major public proof corpus has a structural ingest path (see docs/CORPUS-ADAPTERS.md).
  • 4 arbitration mechanisms — portfolio majority-vote, Bayesian posterior, Dempster-Shafer belief combination, Pareto multi-objective frontier.
  • 6 cross-prover exchange formats — OpenTheory, Dedukti, TPTP, SMT-LIB, SMTCoq, Lambdapi.
  • 11-step trust pipeline — integrity → portfolio → certificates → axioms → confidence → mutation → pareto → statistics → emission (see Architecture page).
  • Polyglot stack — Rust core, Julia ML sidecar, Idris2/Agda formal proofs, Zig FFI, Chapel parallel, AffineScript/Deno UI (migrating from ReScript).
  • Guix-only package management — sealed-container escape hatch for the non-free tail. (Nix fallback was deprecated in the 2026-05-18 estate ruling and fully removed estate-wide on 2026-06-01.)
  • Justfile, not Make. Podman, not Docker.

Recent major work

The 2026-06-01 prover/corpus/vocab/synonyms/arbitration saturation campaign added 13 corpus adapters, 3 new arbiters, 4 new exchange bridges, and a formal data-model spec. Entry points:

The dogfood proof corpus is now CI-gated: every theorem under proofs/{coq,lean,agda} and the src/idris validator type-checks on each PR (dogfood-proofs-ci.yml + idris2-abi-ci.yml), each driven by a just proofs-* recipe — closing a gap where the corpus had no CI. Run it locally via just proofs; see Getting Started.

Clone this wiki locally