Metadata-Version: 2.4
Name: sentinel-sca
Version: 0.1.0
Summary: Python SDK for Sentinel SCA governed agent execution
Author-email: Sentinel SCA <support@sentinelsca.com>
License-Expression: MIT
Project-URL: Homepage, https://sentinelsca.com
Project-URL: Documentation, https://sentinelsca.com/integration-quick-start
Project-URL: Source, https://github.com/sentinelSCA/sentinel
Keywords: sentinel,ai-agents,governance,ed25519,security
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: cryptography>=42
Dynamic: license-file

# Sentinel SCA Python SDK

Install:

```bash
pip install sentinel-sca
```

Use Sentinel before executing agent actions.

```python
from sentinel_sca import SentinelClient

client = SentinelClient(
    agent_id="agent_xxx",
    private_key_pem=open("agent_private_key.pem").read(),
)

decision = client.analyze({"type": "read_url", "target": "https://example.com"})
```
