Integration Quick Start

Connect Sentinel SCA to your own agents, automation, IoT systems, or internal tools. Sentinel becomes the checkpoint your system asks before executing sensitive actions.

1. Create Agent

Register a governed agent in the customer dashboard and copy the agent_id.

2. Keep Private Key

Your system keeps the Ed25519 private key. Sentinel uses the public identity to verify requests.

3. Ask Sentinel

Before execution, send a signed proposed action to /analyze.

4. Enforce Decision

Your system executes only when Sentinel returns an allowed decision.

Governance Flow

Customer app or AI agent
  -> signs proposed action
  -> POST /analyze
  -> receives allow, deny, or review
  -> executes only if allowed
  -> evidence appears in dashboard

Example Request Shape

Sample code only: this example does not register a customer or create a live account. New customers must submit the registration form; signed agent requests are used only after dashboard access and agent setup.
{
  "agent_id": "agent_xxx",
  "command": "{\"type\":\"read_url\",\"target\":\"https://example.com\"}",
  "timestamp": "2026-06-08T12:00:00Z",
  "signature": "base64-ed25519-signature"
}

First Integration Checklist

Paddle activates paid package limits. Sentinel handles account access, agents, governance decisions, audit trails, and evidence.

Open Customer Dashboard

One SDK, One API, Package-Enforced Layers

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.

Open Developer Docs

From Agent to Live Software

Sentinel is the governance layer. Your application performs the real task, but it must ask Sentinel before execution.

  1. Create an agent in the customer dashboard.
  2. Copy the agent ID and private key into your application.
  3. Install sentinel-sca or @sentinelsca/sdk.
  4. Send a signed decision request before each action.
  5. Request production capabilities for the exact sector actions you need.
  6. Execute only when Sentinel returns allow; pause for review; stop on deny.