Connect Sentinel SCA to your own agents, automation, IoT systems, or internal tools. Sentinel becomes the checkpoint your system asks before executing sensitive actions.
Register a governed agent in the customer dashboard and copy the agent_id.
Your system keeps the Ed25519 private key. Sentinel uses the public identity to verify requests.
Before execution, send a signed proposed action to /analyze.
Your system executes only when Sentinel returns an allowed decision.
Customer app or AI agent -> signs proposed action -> POST /analyze -> receives allow, deny, or review -> executes only if allowed -> evidence appears in dashboard
{
"agent_id": "agent_xxx",
"command": "{\"type\":\"read_url\",\"target\":\"https://example.com\"}",
"timestamp": "2026-06-08T12:00:00Z",
"signature": "base64-ed25519-signature"
}
agent_id into your application configuration./analyze before executing the action.Integrate once. Sentinel applies governance layers automatically based on agent identity, tenant policy, and the customer package.
The customer app should not implement each Sentinel layer separately. It calls Sentinel before execution; Sentinel enforces identity, replay protection, policy, tenant isolation, package entitlement, and audit evidence.