ageniko
The open trust boundary for AI agents.
One decorator gives every agent action a receipt it can't forge and a gate it can't cross. Open-source, framework-agnostic, 30 seconds to first trace.
Installation
pip install ageniko
Quick Start
from ageniko import instrument, check, approve, agent
# Initialize OTEL tracing
instrument()
# Add receipts to agent functions — proves what it claimed vs what it did
@check
def handle_ticket(ticket):
result = process(ticket)
return result
# Add approval gates — blocks before irreversible actions
@approve(when="irreversible")
def delete_account(user_id):
db.delete_user(user_id)
# Full agent wrapper — tracing + receipts + cost tracking
@agent(name="support-agent", model="gpt-4o")
def run_agent(query):
return llm.complete(query)
What Ageniko Provides
| Feature | Description |
|---|---|
| Receipts | Claimed vs. actual verdict on every run |
| Approval Gates | Deterministic block before irreversible actions |
| Tracing | OTEL-native, every span, tool call, token, cost |
| Kill-Switch | Budget, loop, and token caps per run |
Self-Host
git clone https://github.com/ageniko-ai/ageniko
cd ageniko
cp .env.example .env
docker compose up
Open http://localhost:3000 for the console.
Pricing
| Tier | Price | Details |
|---|---|---|
| Open Source | $0 forever | Self-host, two containers |
| Pro | $49/mo | Managed cloud, silent-failure alerts |
| Business | $299/mo | SSO, RBAC, compliance export |
| Enterprise | From $1,500/mo | Self-hosted support, SLAs |
Links
License
Apache 2.0
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ageniko-0.1.1.tar.gz
(5.0 kB
view details)
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 ageniko-0.1.1.tar.gz.
File metadata
- Download URL: ageniko-0.1.1.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26015e21517e2c5e928235ff5c969b5be37ef428af6f746f621a2bdb032f44df
|
|
| MD5 |
32e4a895218a123ebcecff138cc777e1
|
|
| BLAKE2b-256 |
6742980ac9ad92ac2c3a20921e0b5a7da4fad7b83602e945e2f03e2bc386b505
|
File details
Details for the file ageniko-0.1.1-py3-none-any.whl.
File metadata
- Download URL: ageniko-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a21b3905b9f25e7edb67485788c95898676da457106f3fb5a56c892195608e2
|
|
| MD5 |
47d9f5430214455bc9ea9918459619cc
|
|
| BLAKE2b-256 |
f7fc74e71b767118fbde2070720cacb6edb1384d3e6e98c7f8a717be3fc5dcc2
|