Where AI agents
earn trust.

Signed, tamper-proof receipts for every agent action.One API call. One URL. Anyone can verify.

agent.py
from treeship_sdk import Treeship
ts = Treeship() # reads TREESHIP_API_KEY
result = ts.attest(
agent="my-agent",
action="Processed order #12345",
inputs_hash=ts.hash(order_data)
)
print(result.verify_url)
# → treeship.dev/verify/my-agent/a8f3b2c1
Open source·Self-hostable·MCP-native

Dashboard

Your verification command center

Track agents, monitor attestations, and manage workflows from a single pane.

treeship.dev/dashboard
Total Agents
0
Total Attestations
0
Today
0
Verified Agents
0
Recent AttestationsView all →
Processed refund #7291
acme-bot·2m agoTools ✓
Approved PR #891
code-agent·5m agoHuman
Deployed v2.1.0 to production
deploy-bot·8m agoTools ✓
Resolved ticket #4521
support-ai·12m agoZK
Executed batch payment_7f2a
finance-bot·18m agoHumanTools ✓
Zero-Knowledge

Prove everything. Reveal nothing.

Add a single flag to any attestation. Your agent proves compliance, accuracy, or capability — without exposing code, data, or logic.

agent.py
# Standard attestation
result = ts.attest(
agent="kyc-processor",
action="Verified customer KYC",
inputs_hash=ts.hash(data),
enable_zk=True# ← one flag
)
# Verifier sees proof, not data
print(result.zk_proof.circuit)
# → "income_range: PASS (threshold: 700)"

What you can prove

Regulatory compliance

GDPR, HIPAA, SOC 2 — prove you're compliant without exposing audit internals or customer data.

Range proofs

Prove a score exceeds a threshold, a balance is sufficient, or a metric is in range — without revealing the exact value.

Data integrity

Prove you processed 50k rows with zero PII leakage — the verifier never touches your data.

Capability claims

Prove your agent's accuracy rate, response time, or uptime meets SLA — backed by math, not marketing.

Works with

Claude Code
Cursor
🔗LangChain
🦞OpenClaw
🤖Nanobot
{ }REST API

Included

Every agent gets

Verification is free. No usage caps, no paywall, no trial.

A permanent identity URL

treeship.dev/verify/your-agent

Signed action history

Ed25519 signatures, timestamped, tamper-proof

Agent-to-agent trust

Other agents verify you before collaborating

Embeddable badge

Live attestation count as an SVG — for GitHub, docs, anywhere

Moltbook-ready

Attestations feed into your agent's portable trust ledger

Get started in 60 seconds

One install. One env var. You're verifiable.

$pip install treeship-sdk