The README makes claims. This file backs them up with specific code locations, honest caveats, and enough trace information for an external reviewer to navigate the codebase cold.
Hyperpolymath.jl is a metapackage (a bundle) that provides a convenient way to install and load the entire Hyperpolymath Julia Ecosystem at once.
How it works: src/Hyperpolymath.jl is a single 77-line file. It contains
nothing but using statements (one per sub-package) and corresponding export
statements re-exporting each package module symbol. The sub-packages are
organised into seven named layers via source comments:
-
Logic & Verification —
Axiom,Axiology,SMTLib,ZeroProb,PolyglotFormalisms -
Security & Forensics —
ProvenCrypto,InvestigativeJournalism -
History & Social Science —
Cliodynamics,Cliometrics,Causals,ViableSystems -
Organising & Action —
TradeUnionism,PRComms,Exnovation,BowtieRisk -
Mathematics & Play —
JuliaForChildren,KnotTheory,Skein,HackenbushGames,Cladistics -
Orchestration & Meta —
PostDisciplinary,JuliaPackageSpitter,MacroPower,ShellIntegration,MinixSDK -
The Metal Layer —
LowLevel,SiliconCore,AcceleratorGate,QuantumCircuit,HardwareResilience,FirmwareAudit
There is no glue code, no conditional loading, and no registration — the file is a pure dependency aggregator.
Honest caveat: Because this is a pure aggregator, loading Hyperpolymath in a
fresh Julia environment will fail unless all 30+ sub-packages are installed.
The package has no fallback or partial-load mode. In practice, selective
installation (installing only the sub-packages you need) is the recommended path
for anyone who does not need the full ecosystem.
Claim 2: Grouped by domain — 30+ packages spanning logic, security, history, mathematics, and the metal layer
This metapackage re-exports: Axiom.jl, Axiology.jl, SMTLib.jl, ZeroProb.jl, PolyglotFormalisms.jl, ProvenCrypto.jl, InvestigativeJournalism.jl, Cliodynamics.jl, Cliometrics.jl, Causals.jl, TradeUnionism.jl, PRComms.jl, Exnovation.jl, BowtieRisk.jl, JuliaForChildren.jl, KnotTheory.jl, Skein.jl, HackenbushGames.jl, Cladistics.jl, PostDisciplinary.jl, JuliaPackageSpitter.jl, MacroPower.jl, ShellIntegration.jl, MinixSDK.jl, LowLevel.jl
How it works: Each layer boundary in src/Hyperpolymath.jl is delimited by a
comment (# --- 1. Logic & Verification --- etc.). The grouping is cosmetic
at the module level — Julia does not enforce layer boundaries at runtime — but it
establishes the intended dependency topology for maintainers. The final export
block re-exports each module symbol so that using Hyperpolymath makes every
sub-package namespace available at the top level.
Honest caveat: Re-exporting entire module namespaces from 30+ packages into a single namespace risks name collisions. The README recommends selective installation for production use and treats the full bundle as a research-convenience shortcut.
Tests live in test/runtests.jl, test/e2e_test.jl, and test/property_test.jl.
Because all sub-packages are unavailable in a standard CI environment, the tests
work by reading the source file as text and asserting structural invariants:
-
module Hyperpolymathdeclaration appears exactly once -
end # moduleis present -
SPDX header is present on line 1
-
Required sub-package groups are declared (
using Axiom,using MacroPower,using SiliconCore,using LowLevel, etc.) -
Every
usingstatement contains a non-empty identifier after the keyword -
Source file content is deterministic across 10 repeated reads (property test)
-
If sub-packages happen to be installed, a best-effort load is attempted and the module symbol is verified with
@test_skipfallback if unavailable
| Path | What’s There |
|---|---|
|
Entire module. 7 |
|
Entry point. Runs structural tests and includes |
|
End-to-end pipeline tests: file exists, module is well-formed, all required sub-package declarations are present. |
|
Property-based structural invariants: deterministic reads, all |
|
Package identity and all 30+ sub-package dependencies enumerated. This is the definitive list of what the bundle includes. |
|
MPL-2.0 full text. |
| Repo | How Hyperpolymath.jl (or this pattern) appears |
|---|---|
|
The monorepo that houses all sub-packages as subdir packages; this standalone repo is the published aggregator for them. |
|
Primary consumer of the Julia ecosystem; imports individual packages from the ecosystem rather than the full metapackage. |
|
One of the five Logic & Verification sub-packages bundled here; has its own standalone repo and is cross-tested with the metapackage. |
|
Each standalone |