Every Forge release ships with a signed, downloadable test manifest. Every capability we document has a test number. Every test result is verifiable independently — you don't have to take our word for it.
2,223
Certified kernel tests
Run on every release, before it ships
0
Test failures
Across every release in the manifest archive
109
Tested capabilities
Each mapped to a specific RPC method
Ed25519
Signature algorithm
Manifest signed with a non-exportable key
6
Third-party kernel adapters
OCP, CadQuery, FreeCAD, CGAL, Blender, manifold3d
Replayable
Certification suite
Run it yourself — instructions below
Every release ships a JSON manifest signed with Ed25519. Fields you can verify independently:
Every tested capability is assigned to a tier. Tests that require a capability the active kernel doesn't support are skipped cleanly — never falsely passed.
Full PRO access
Used for all ForgeCAD releases. Every shipped binary is tested at FORGE tier before the manifest is signed.
All 109 capabilities
Includes analytic geometry, advanced boolean operations, topology optimisation, geodesic computation, and all simulation interfaces.
Core capabilities + advanced surface ops
Parametric modelling, FEA/CFD, CAM toolpath, full drawing and GD&T, assembly mates. Excludes specialist simulation and advanced mesh operations.
Analytic primitives + booleans + mesh export
Exact volume/surface area for all primitive types, boolean union/intersection/difference, STL export, and inertia tensor computation.
ForgeCertify is kernel-neutral. The same 2,223 tests run against any B-rep geometry engine. Capabilities the kernel doesn't support are skipped — never faked.
Download the manifest, verify the Ed25519 signature against our published public key, and confirm the SHA-256 hash matches the test result JSON. No special tooling required — standard OpenSSL or the Python cryptography library.
# Download manifest and public key
curl -O https://cdn.skyfiresystems.com/forge/cert-result-latest.json
curl -O https://cdn.skyfiresystems.com/forge/forge-cert.pub
# Verify Ed25519 signature
openssl pkeyutl -verify \
-inkey forge-cert.pub -pubin \
-sigfile cert-result-latest.json.sig \
-in cert-result-latest.json