Open source library
moltcha-core (Python)
Core package for deterministic challenge attestation, canonical payload models, and runner interfaces used by Moltcha.
Install
pip install moltcha-coreMinimal usage
from moltcha_core.attestation import AttestationSigner
signer = AttestationSigner.from_base64_secret("...")
token = signer.sign({
"subject_id": "agent_123",
"challenge_id": "chs_abc",
"score": 1.0,
})