OCC cryptographic proof signing for the Anthropic Python SDK
Project description
occ-anthropic
OCC cryptographic proof signing for the Anthropic Python SDK.
Every tool call produces an Ed25519-signed proof entry in proof.jsonl, creating a tamper-evident audit log of agent actions.
Install
pip install occ-anthropic
Quick Start
Wrap Client
import anthropic
from occ_anthropic import wrap_client
client = anthropic.Anthropic()
client = wrap_client(client)
# Every messages.create() with tool_use responses is now signed
response = client.messages.create(
model="claude-sonnet-4-20250514",
max_tokens=1024,
tools=[{
"name": "search",
"description": "Search the web",
"input_schema": {
"type": "object",
"properties": {"query": {"type": "string"}},
"required": ["query"],
},
}],
messages=[{"role": "user", "content": "Search for OCC proofs"}],
)
Decorator
from occ_anthropic import occ_tool
@occ_tool
def search(query: str) -> str:
"""Search the web."""
return f"Results for: {query}"
# Call as usual — proof is signed automatically
result = search(query="OCC proofs")
Custom Signer
from occ_anthropic import OCCSigner, wrap_client
signer = OCCSigner(state_dir=".occ", proof_file="audit.jsonl")
client = wrap_client(anthropic.Anthropic(), signer=signer)
Proof Format
Each line in proof.jsonl is a JSON object:
{
"version": "occ/proof/1",
"timestamp": "2026-03-20T12:00:00.000Z",
"signer": "<base64url-ed25519-public-key>",
"payload": {
"type": "tool-call",
"tool": "search",
"inputHash": "<sha256-hex>",
"outputHash": "<sha256-hex>"
},
"signature": "<base64url-ed25519-signature>",
"prev": "<sha256-hex-of-previous-proof>"
}
Proofs are chained: each proof's prev field contains the SHA-256 hash of the previous proof's canonical JSON.
Configuration
- State directory: Keypair stored in
.occ/signer-state.json(defaults to CWD) - Proof file: Defaults to
proof.jsonlin CWD - Both configurable via
OCCSigner(state_dir=..., proof_file=...)
License
Apache-2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file occ_anthropic-0.2.0.tar.gz.
File metadata
- Download URL: occ_anthropic-0.2.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92d9e3c4459d2c5e090e1afc5ffec0c9a886810c6986dae297782a196a3361db
|
|
| MD5 |
ff28d6a76111f3d6c6dc2750f17e011c
|
|
| BLAKE2b-256 |
983cd7a3312d76bf5da62525b56380598def2f1cb6e9668506619e2a12680bf4
|
File details
Details for the file occ_anthropic-0.2.0-py3-none-any.whl.
File metadata
- Download URL: occ_anthropic-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2d0a18c59cf827bb729a8d1d5a474dfd72b293a15fd623cc2d06dfd932d23d2
|
|
| MD5 |
793c8472d5e071ab485a2795b6de7bda
|
|
| BLAKE2b-256 |
97433f3ef07e747a2955bfebe6ee62f52da69be9513fab53fd204e756d8017e1
|