Issue verifiable allegiance receipts for AI agents
Project description
getstub
Issue verifiable allegiance receipts for AI agents, from Python.
When your agent acts for someone, this gives them a signed record of what it did and what influenced the result, checkable at a neutral registry. Three calls, and the third is one line per action.
Here is a live receipt before you install anything:
https://api.getstub.dev/check/72b4baee1719ec34acc5df5c514a12fd2e19b9a6776de4b45706988f765c77d8
Install
pip install getstub
Quickstart
import os
from getstub import Stub, influenced
# 1. Declare your standing mandate, once. Policy level: who pays you, and
# which kinds of conflict exist in your business at all.
stub = Stub(
operator="Nimbus Assistant",
declared={
"paid_by": "the traveler, subscription",
"conflicts": ["commission"],
},
principal_salt=os.environ["STUB_SALT"],
)
# 2. At the line where your ranking picks a winner, pass through the flags
# it already computed. Nobody hand writes these.
inf = []
if pick.paid_placement:
inf.append(influenced.placement(f"{pick.seller} paid for placement"))
if pick.commission_pct:
inf.append(influenced.commission(f"{pick.commission_pct}% on a sale"))
# 3. One call per action.
receipt = stub.issue(
principal=user.id, # hashed on your side, never sent raw
agent="nimbus",
requested=query,
done=f"booked {pick.name}",
value_moved={"amount": pick.price, "currency": "GBP"},
not_disclosed=inf, # an empty list is signed proof none applied
)
print(receipt["url"]) # hand this to your user
Where disclosures come from
Your ranking code already knows when a boost, a commission, or a partner filter applied, because it applied them. Pass the same flags through with influenced at the same line where the boost happens. Helpers: placement, commission, partner_only, own_brand, data_share, and other(kind, detail) for anything else.
An empty not_disclosed is not nothing. It is a signature saying conflicts exist in your business and none of them touched this action.
Privacy by default
Pass your internal user id as principal and the client hashes it on your side with a salt only you hold. The registry rejects anything that is not an opaque digest, so no name or email can be stored even by accident.
Set the salt once so digests stay stable across restarts. If a user asks to be forgotten, drop their mapping to the salt and their digests become permanently meaningless, while the record stays append only.
Keep requested and done about the action, not the person. The client warns in development if free text looks like it carries an email or phone number.
Keys
The client generates an Ed25519 keypair on first use. Save it if you want the same operator identity across restarts:
kp = stub.export_keypair() # store this somewhere safe
stub = Stub(operator="...", declared={...}, keypair=kp)
Your keys stay on your side. We cannot recover them for you.
Compatibility
Stubs are signed over a canonical JSON form. This client produces byte identical output to the JavaScript client at @getstub/agent, which is verified in the test suite rather than assumed: the tests sign a stub in Python and have the actual registry code verify it.
python3 test_getstub.py # 31 tests
Pricing
Free tier: 1,000 stubs a month. Checking is always free.
Links
- Docs and quickstart: https://getstub.dev
- Registry: https://api.getstub.dev
- Witness key: https://api.getstub.dev/witness
- JavaScript client:
npm install @getstub/agent
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 getstub-0.1.1.tar.gz.
File metadata
- Download URL: getstub-0.1.1.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3141714f5eb501bd2517e8a3ecceb6345e8d132fb59f8729b82bd663e6a88db
|
|
| MD5 |
e8b50311b725dbc2f51efd34bb3081ad
|
|
| BLAKE2b-256 |
4488f4d67f6b0be701746c26cabd93f26b67bfc8705f4a66a9da9e3caaa31d60
|
File details
Details for the file getstub-0.1.1-py3-none-any.whl.
File metadata
- Download URL: getstub-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.6 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 |
0a176c7973e2948ee2163d5d513239617fb51f4aa69ef50611db01f6d8c7c468
|
|
| MD5 |
f08e2bd66863d06f50321ea8efa00384
|
|
| BLAKE2b-256 |
0d72bc653704bf669af02d989ce6a16c829eb77b198072ff495efe60c9e939a5
|