Skip to content

IDProva launches April 7 — Registry packages coming at launch. Build from source now.

Launch Status

IDProva is an open protocol for verifiable AI agent identity. We’re launching the full protocol, SDKs, CLI, and public registry on April 7, 2026.


Build from source today — the protocol and tooling are complete.

Protocol Specification

AID format (W3C DID-compatible), DAT structure with scoped delegation, action receipts with tamper-evident audit trails. All cryptographic primitives defined.

Rust SDK (Reference)

idprova-core crate — full protocol implementation. 33 tests passing. Key generation, AID creation/verification, DAT issuance/verification, receipt generation.

Python SDK

PyO3 bindings — pip install idprova (from source). Pythonic API wrapping the Rust core.

TypeScript SDK

napi-rs bindings — @idprova/core (from source). Native Node.js addon with full TypeScript types.

CLI Tool

9 commands: keygen, aid create/verify/resolve, dat issue/verify/inspect, receipt verify/stats. Ready for integration testing.

Documentation

31 pages — concepts, protocol spec, SDK guides, CLI reference, compliance mappings, blog posts.


These will be available on launch day:

DeliverableChannelStatus
Registry serviceSelf-hosted Docker imageFinal testing
idprova on crates.ioRust package registryReady to publish
idprova on PyPIPython package indexReady to publish
@idprova/core on npmNode.js package registryReady to publish
Registry hosted instanceregistry.idprova.devInfrastructure ready
GitHub repo publictechblaze-au/idprovaCurrently private

ItemTargetNotes
NIST 800-53 mappingComplete by launchControl mapping in progress
Australian ISM mappingComplete by launchISM control alignment
SOC 2 mappingComplete by launchTrust Services Criteria mapping
NCCoE feedbackDue April 2NIST CAISI submission response
Vercel deploymentBefore launchidprova.dev DNS + deploy

DateMilestone
Feb 2026Protocol spec finalized, Rust crate complete
Mar 2026SDKs built (Python, TypeScript), CLI ready, docs site 31 pages
Apr 2NCCoE/NIST CAISI feedback deadline
Apr 7Public launch — registry packages published, GitHub repo public, idprova.dev live
Apr–MayCommunity feedback, registry adoption, compliance stub completion

Don’t wait for registry packages — you can build and test today:

Terminal window
# Clone and build the Rust crate
git clone https://github.com/techblaze-au/idprova.git
cd idprova
cargo build --release
cargo test
# Generate your first AID
./target/release/idprova keygen
./target/release/idprova aid create --name "my-agent"

See the Quick Start guide for full setup instructions.