AgentAssert Type-C kernel — formal behavioral contracts for AI agent harnesses. Provider-blind, transport-blind runtime enforcement.
Project description
agentassert-typec-core
Formal behavioral contract kernel. Provider-blind, transport-blind.
This is the core engine — zero LLM deps, zero HTTP deps. Every adapter (proxy, SDK, hook) imports this.
Features
- 7 Process Contract Operators — tool_blocklist, tool_allowlist, must_state, must_precede, context_budget, process_drift, judge_predicate
- ContractSpec DSL — YAML-based,
dsl_version: "0.4"for full Type-C,dsl_version: "0.3"for ABC compatibility - JSD Drift Tracker — Welford-style incremental (O(1) per update), frozen baseline at window boundary
- Θ Reliability Scorer — Θ = 0.35C̄ + 0.25(1-D̄) + 0.20/(1+E) + 0.20S
- Thread-safe SessionMonitor — RLock-protected, evaluate() never blocks for >10ms
- Pre-compiled AST — all regex patterns compiled once at SessionStart
Install
pip install agentassert-typec-core
Quickstart
from agentassert_typec_core import SessionMonitor, PreAction, DecisionResult
monitor = SessionMonitor.from_yaml("contract.yaml")
event = PreAction(session_id="s1", contract_id="c1", tool="Read", args={})
result = monitor.evaluate(event)
print(result.decision.name) # ALLOW or DENY
Optional: OTel
pip install agentassert-typec-core[otel]
License
MIT
Project details
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 agentassert_typec_core-0.5.0.tar.gz.
File metadata
- Download URL: agentassert_typec_core-0.5.0.tar.gz
- Upload date:
- Size: 29.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
126a237c575105e1c722f9877ae610742f2e22b985bf5091468130922f76db31
|
|
| MD5 |
9894295c1a37cd6433bc05c80aed1976
|
|
| BLAKE2b-256 |
124902a1945d7b6cc0b582d5ea87bcd27c8126619dd086379f870555d5baff5e
|
File details
Details for the file agentassert_typec_core-0.5.0-py3-none-any.whl.
File metadata
- Download URL: agentassert_typec_core-0.5.0-py3-none-any.whl
- Upload date:
- Size: 23.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b4a09f5b20deaebd416e4297ede790346c33b7b7ca87a81af362cf21e6b3c8d
|
|
| MD5 |
3944716ed75019f8c7183aaffd72b669
|
|
| BLAKE2b-256 |
cacd493749d46beb1c64f988a47a155af03565931f97b1fe33cf4e895b85b6c0
|