Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

AETHER X GLOBAL

ReproCert

Claim-to-evidence reproducibility certificates for software, AI and research workflows.

CI License: Apache-2.0 Python 3.11+ Status: Public Alpha

CLAIM → EXACT COMMAND → EVIDENCE → VERDICT → CERTIFICATE


What ReproCert does

ReproCert is an open-source developer tool from AETHER X GLOBAL that turns explicit technical claims into machine-checkable, reproducible evidence records.

Instead of writing an unsupported statement such as:

“This benchmark completes in under two seconds.”

you define the claim, command, evidence files and acceptance conditions. ReproCert executes the declared workflow, records evidence and environment metadata, evaluates the checks, and emits a machine-readable certificate with one of four explicit outcomes:

PASS · FAIL · INCONCLUSIVE · ERROR

ReproCert is intentionally narrow. It does not claim that a benchmark is unbiased, a scientific hypothesis is true, or software is secure merely because a certificate passes.

CERTIFICATE INTEGRITY ≠ PRODUCER AUTHENTICITY ≠ SCIENTIFIC TRUTH

Why it exists

Modern software and AI projects routinely publish performance, compatibility, reproducibility and data-quality claims. The evidence behind those claims is often fragmented across scripts, CI logs, screenshots and human interpretation.

ReproCert creates a portable boundary between a claim and its supporting execution evidence:

CLAIM
  ↓
DECLARED EXECUTION
  ↓
OBSERVED EVIDENCE
  ↓
EXPLICIT CHECKS
  ↓
PASS / FAIL / INCONCLUSIVE / ERROR
  ↓
REPRODUCIBILITY CERTIFICATE

It is designed to complement — not replace — test frameworks, benchmark harnesses, SLSA, in-toto, Sigstore, GitHub Artifact Attestations and experiment-tracking systems.

Looking for early adopters

Have a real CI, benchmark, testing, AI, or research workflow where a technical claim should be backed by portable evidence?

ReproCert is actively looking for early adopters.

Good first integrations include:

  • pytest or JUnit quality gates;
  • benchmark thresholds;
  • reproducible build or artifact checks;
  • data-quality assertions;
  • CI policies that require explicit evidence;
  • workflows that would benefit from signed provenance.

You do not need to redesign your project around ReproCert. The preferred first integration is small, isolated, and reversible.

Open an Adoption / Integration request →

You can also read the public adopter call in Issue #7.

Quickstart — self-service

No AETHER X account, API key, hosted service, or approval is required.

Until the first PyPI publication is completed, install the stable v0.2 channel directly from GitHub:

python -m pip install "git+https://github.com/AETHERXGLOBAL/reprocert.git@v0.2"

Initialize a pytest project and generate a GitHub Actions workflow:

reprocert init pytest --github-actions
reprocert doctor
reprocert run reprocert.yml -o reprocert-certificate.json
reprocert verify reprocert-certificate.json --claim reprocert.yml --evidence-root .

For other workflows:

reprocert init command --github-actions
reprocert init benchmark --github-actions

Or run reprocert init --github-actions and let ReproCert conservatively detect pytest.

Expected result:

ReproCert verdict: PASS

See the 5-Minute Start and Troubleshooting.

Example claim

apiVersion: reprocert.dev/v1alpha1
kind: ReproducibilityClaim
metadata:
  id: api-latency
  title: Median latency stays below the declared threshold
spec:
  command: [python, benchmark.py]
  timeout_seconds: 60
  evidence:
    - results.json
  checks:
    - id: latency
      source:
        type: json
        path: results.json
        pointer: /median_ms
      op: lt
      expected: 2000

Supported observation sources

json · text · stdout · stderr · exit_code · file_sha256 · file_size · junit

Supported comparators

eq · ne · lt · le · gt · ge · approx · contains

Verdict semantics

Verdict Meaning
PASS Execution completed as specified, required evidence was available, and every declared check passed.
FAIL Execution completed, evidence was available, and at least one declared claim check was false.
INCONCLUSIVE Execution completed but required evidence could not be resolved or adjudicated.
ERROR The declared execution could not run as specified, timed out, or returned an unexpected process exit code.

The distinction matters: a crashed benchmark is not automatically evidence that the benchmark claim is false.

GitHub Action

Use ReproCert directly in another repository:

- uses: AETHERXGLOBAL/reprocert@v0.2
  id: reprocert
  with:
    claim: path/to/claim.yml
    certificate: reprocert-certificate.json

- run: |
    echo "Verdict: ${{ steps.reprocert.outputs.verdict }}"
    echo "Digest: ${{ steps.reprocert.outputs.certificate-digest }}"

For untrusted pull requests, use least-privilege workflow permissions and never expose secrets to code you do not trust.

Multi-claim suites

ReproCert v0.2 can execute several independent claims under one aggregate report while preserving a separate certificate for every member claim.

reprocert suite examples/suite.yml \
  --output suite-report.json \
  --certificate-dir .reprocert/certificates

A known false claim remains FAIL; it is not hidden by an unrelated execution error. See Claim Suites.

JUnit integration

Existing test systems can feed ReproCert without rewriting their test runners. Point a check at JUnit XML and select an aggregate metric:

source:
  type: junit
  path: junit.xml
  metric: failures
op: eq
expected: 0

Supported metrics are tests, failures, errors, skipped, passed, and time_seconds. See JUnit Integration.

Pytest-native adapter

Projects that already use pytest can create a ReproCert certificate directly:

reprocert pytest --workdir . --output pytest-certificate.json -- -q

The adapter preserves pytest semantics: ordinary test failures become ReproCert FAIL, while unexpected pytest execution states remain ERROR. See Pytest-Native Adapter.

Hardened container execution profile

A claim may run through a constrained Docker profile using an immutable image digest:

container:
  engine: docker
  image: registry.example/tool@sha256:<64-hex-digest>
  network: none
  read_only_root: true
  drop_capabilities: true
  no_new_privileges: true

Mutable image tags are rejected. The profile is continuously exercised on GitHub-hosted Ubuntu, but it is not described as a proof of deterministic computation. See Container Profile.

Certificate policy layer

Organizations can apply acceptance requirements without rewriting the underlying claim verdict:

reprocert policy certificate.json policy.yml -o policy-result.json

A certificate may remain PASS while the policy result is FAIL because, for example, CI or container execution was required. Policy evaluation verifies certificate integrity first. See Policy Layer.

Custom attestation predicate

Generate a privacy-minimized predicate from a certificate:

reprocert predicate certificate.json -o reprocert-predicate.json

The reference workflow signs both general artifact provenance and the ReproCert-specific predicate with GitHub Artifact Attestations. The predicate deliberately excludes command text and stdout/stderr excerpts.

Certificate verification

ReproCert separates two questions:

  1. Is the certificate internally consistent with the claim and evidence I have?
    reprocert verify checks certificate integrity, verdict consistency, optional claim identity and optional evidence hashes.

  2. Who produced the certificate and in which repository/workflow?
    Use a signed external attestation. This repository includes a reference workflow using GitHub Artifact Attestations.

A certificate self-digest is a stable content identifier. It is not a digital signature.

Developer surface

Current public-alpha scope

Included today:

  • YAML and JSON claim definitions;
  • bounded argv execution with shell=False;
  • deterministic claim hashing;
  • JSON Pointer observations;
  • stdout/stderr/file/JUnit observations;
  • multi-claim suites with aggregate reports;
  • pytest-native quality-gate adapter;
  • digest-pinned hardened Docker execution profile;
  • certificate acceptance policies kept separate from claim verdicts;
  • SHA-256 evidence records;
  • non-secret environment capture;
  • canonical certificate digest;
  • offline certificate verification;
  • certificate comparison;
  • reusable composite GitHub Action;
  • open JSON Schemas;
  • cross-platform CI;
  • adversarial path-boundary tests;
  • general producer-provenance attestation plus a custom ReproCert predicate;
  • privacy-minimized predicate generation;
  • richer JSON output for automation;
  • self-service project scaffolding with reprocert init;
  • environment/readiness checks with reprocert doctor;
  • generated GitHub Actions workflow on request.

Not included today:

  • remote execution;
  • embedded private-key management;
  • OCI publication;
  • distributed benchmark orchestration;
  • general statistical inference;
  • scientific correctness adjudication.

Verified cross-repository adoption

ReproCert is now consumed by a separate existing AETHER X repository, AETHER X Governed Intelligence, without modifying that project's product logic or existing disclosure checker.

The consumer workflow produces and verifies a ReproCert certificate, applies an explicit policy, generates a privacy-minimized predicate, and creates signed GitHub attestations on main.

This is a same-organization cross-repository adoption proof, not independent third-party adoption.

See Adoption Evidence.

Project status

Public Alpha — v0.2.2 self-service line (0.2.2a1)

ReproCert is suitable for evaluation and contribution. Interfaces may still change before a stable v1.0 release.

License

Apache License 2.0. See LICENSE.


AETHER X GLOBAL

Financial Markets · Artificial Intelligence · Advanced Technology · Research

Release files for aetherx-reprocert 0.2.2a1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for aetherx-reprocert 0.2.2a1
File Size Uploaded
aetherx_reprocert-0.2.2a1.tar.gz 51.5 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for aetherx-reprocert 0.2.2a1
File Interpreter ABI Platform
aetherx_reprocert-0.2.2a1-py3-none-any.whl Python 3 none any Details

Total release size: 88.0 kB

Release files / aetherx_reprocert-0.2.2a1.tar.gz

Download URL aetherx_reprocert-0.2.2a1.tar.gz
Size 51.5 kB
Tags Source
SHA-256 checksum
How to use checksums
db3ff75a2d1bb9e8c2d0ded303fae93822380975d0c2eef52aeea951362f0881
BLAKE2b-256 checksum
How to use checksums
f707325bd1af00bc7eaf4c526805cdfce29bb75570a9291cebd922ecff6b0b10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / aetherx_reprocert-0.2.2a1-py3-none-any.whl

Download URL aetherx_reprocert-0.2.2a1-py3-none-any.whl
Size 36.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
7e7b0db0bc51a92de9b15b21a3ce2a10da9e223045619953463cd4c4e13fe244
BLAKE2b-256 checksum
How to use checksums
d38dbf8872d1c9743f1b14bec50d4d86543e072758fc5f63a7980b5bc96b19ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.2a1 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page