Metadata-Version: 2.4
Name: delimt
Version: 0.1.0
Summary: Agent identity and permissions SDK for delimt
Home-page: https://delimt.com
Author: delimt
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# delimt

Agent identity, permissions and audit logs — in 5 lines of code.

## Install

pip install delimt

## Usage

from delimt import AgentAuth

auth = AgentAuth(
    agent_id="agt_xxxx",
    base_url="https://delimt.com"
)

with auth.guard(tool="stripe", action="create:refund"):
    # your tool call here — auto-blocked if denied
    pass

decision = auth.evaluate(tool="stripe", action="read:invoice")
print(decision)  # "allow" | "deny" | "escalate"
