Skip to main content

hexr-sdk

Per-process identity, signed evidence, and short-lived cloud credentials for AI agents — in your own cluster.

Hexr gives every agent process its own cryptographic identity, records every model call and tool call as a signed evidence row that stays in your environment, and exchanges that identity for short-lived cloud credentials so agents carry no keys. Auditors get a report mapped to the controls they already use.

Install

pip install hexr-sdk

Python 3.11+. Linux wheels for x86_64 and aarch64 ship a native analyzer (Rust, via PyO3); other platforms build from the sdist. Enterprise mirrors: the same wheels are published to a private index for air-gapped installs — ask us.

The whole user-facing surface

Three symbols and one config object. Nothing is monkey-patched; you mark what you want governed.

from hexr import hexr_agent, hexr_tool, hexr_llm, HexrConfig
from openai import OpenAI

@hexr_agent(name="resume-ranker", tenant="globex")
def rank(applications):
    llm = hexr_llm(OpenAI())                 # every call becomes signed evidence
    store = hexr_tool("gcp_storage")         # the real google-cloud client, short-lived creds, no key
    ...
Symbol What it does
@hexr_agent Registers this process with the identity plane and gives it a SPIFFE ID of its own. Child processes get their own; a process nobody decorated gets nothing — and that absence is a finding.
hexr_llm(client) Wraps an OpenAI, Anthropic, Google GenAI, Cohere, Mistral or LiteLLM client. Intercepts the known call paths, emits a signed evidence row per call, keeps streaming intact. Your business logic is never touched.
hexr_tool(service) Exchanges the process's identity for short-lived credentials and returns the native client. AWS (aws_s3, aws_sts, aws_kms, aws_dynamodb) and GCP (gcp_storage, gcp_bigquery) today. Every call — allowed or denied — is a signed row mapped to a control (SOC 2 CC6.1, HIPAA 164.312).
HexrConfig Optional; otherwise read from environment or hexr.yaml.

The CLI

hexr init          tenant bootstrap, writes hexr.yaml
hexr analyze       read-only: framework, agentic pattern, spawn graph, where identity will attach
hexr build         container image + Kubernetes manifests (agent, PID mapper, Envoy mTLS sidecar, policy, RBAC)
hexr push          to your registry
hexr deploy        to your cluster
hexr delete        tear an agent down cleanly
hexr audit         signed audit pack — --framework soc2 | hipaa | iso42001
hexr cluster       register a runtime cluster with the control plane
hexr trust-policy  cross-cloud federation policy
hexr update        upgrade a running agent
hexr login/logout  control-plane session

hexr analyze

A Rust analyzer parses your code (no execution) and identifies the framework and the agentic pattern, so hexr build knows where identity attaches and what to wrap. Detection is pack-driven — YAML rules the analyzer ships with, so a new framework is a pack, not a release.

Frameworks (15): CrewAI, LangChain, LangGraph, AutoGen, Google ADK, Strands, LlamaIndex, OpenAI Agents, Claude Agent SDK, Pydantic AI, smolagents, DSPy, Agno, MCP servers, and bespoke Python loops with no framework at all.

Agentic patterns (7): prompt chain, routing, parallelization, orchestrator–workers, evaluator–optimizer, ReAct, reflection.

Measured on unmodified files from each framework's own repository: 15/15 correct, 17 files, 715 ms total. The evaluation and its sources ship in the repository (_hexr_analyzer/EVAL_REPORT_REAL.md).

What runs where

  • Your cluster runs the agents, a per-cluster identity server chained to Hexr's control plane, a policy engine, a credential injector, and the evidence store (Postgres). Evidence never leaves.
  • Hexr's control plane issues the per-tenant trust root, licences, and receives a 60-second heartbeat that says whether identity is still being issued and whether evidence is still being signed — not a pod count.
  • Isolation between tenants is cryptographic: each tenant has its own root; a credential from one tenant is not denied by another, it is unverifiable. Re-checked hourly, and you can check it yourself on the demo.

Verify a release

Wheels are published from a tag by GitHub Actions through PyPI trusted publishing (no API token exists) and carry Sigstore attestations. Compare the wheel's SHA-256 with the attestation on the release's workflow run before you trust it.

Support

Design partners and enterprise: https://hexr.dev/#cta. Issues with the SDK: https://github.com/hexrdev/hexr/issues.

Release files for hexr-sdk 0.5.26

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

Source distribution (sdist)

Source distribution for hexr-sdk 0.5.26
File Size Uploaded
hexr_sdk-0.5.26.tar.gz 596.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for hexr-sdk 0.5.26
File Interpreter ABI Platform
hexr_sdk-0.5.26-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 abi3 Linux glibc 2.17+ x86-64 Details
hexr_sdk-0.5.26-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 abi3 Linux glibc 2.17+ ARM64 Details

Total release size: 4.5 MB

Release files / hexr_sdk-0.5.26.tar.gz

Download URL hexr_sdk-0.5.26.tar.gz
Size 596.1 kB
Tags Source
SHA-256 checksum
How to use checksums
7bb13b7129d87e95069307673f8e2f3ec421a07fe4f4046b8adca460a738e3f3
BLAKE2b-256 checksum
How to use checksums
c13c1e6cea837cf9e010985686cca1f340d53eb29bcb14af577a0af3fd219d10
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 19, 2026.

Transparency log

Release files / hexr_sdk-0.5.26-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL hexr_sdk-0.5.26-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 2.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 abi3
SHA-256 checksum
How to use checksums
7ed1203f2bc268a64fa20842a5f11554c1960851fcf269087676f85043085fc6
BLAKE2b-256 checksum
How to use checksums
903ad8ea4bc53887e84acb1a2fbc167e4bf8b0d271346ef43f4e786552843b2b
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 19, 2026.

Transparency log

Release files / hexr_sdk-0.5.26-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL hexr_sdk-0.5.26-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.9 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 abi3
SHA-256 checksum
How to use checksums
c6942507d6d5ceef82e20dec4fb502c140aa545260b9891feb1f118be33da20a
BLAKE2b-256 checksum
How to use checksums
7d4154ddad348bf30fb991d53898a7e93463a0e00f11198984cd95b1465a6bc4
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 19, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.5.26 This release

3 release files

0.5.25

3 release files

0.5.24

3 release files

0.5.23

3 release files

0.5.22

3 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