← Back to OAIS.ai
AWS Marketplace OAIS Sentinel SaaS Onboarding
● Subscription Ready

Activate Your Sentinel Workspace

Complete your organization registration to activate your sovereign AI governance tenant, initialize your zero-knowledge cryptographic keys, and unlock Amazon Bedrock interception.

Optional: links directly to your AWS billing account
By activating a workspace, you agree to the OAIS Terms of Service and Privacy Policy. AWS Marketplace subscribers are governed by the Standard Contract for AWS Marketplace (SCMP).

Workspace Successfully Activated!

Your sovereign AI governance tenant is live. Zero-knowledge cryptographic salting is anchored in your local client custody.

Recommended Portable Client Activation Token
Single-String Auto-Configuration

Encodes your Tenant ID, API Key, zero-knowledge HMAC secret, and AWS region into a single secure string for instant 1-command deployment.

oais_act_...
⚡ 1-Command Developer Quickstart
bash — pip install & auto-init
# 1. Install official OAIS Sentinel governance package & initialize credentials:
$pip install oais-sentinel && sentinel init --token oais_act_...
# Direct wheel: pip install https://oais.ai/dist/oais_sentinel-2.0.0-py3-none-any.whl
# 2. Launch your local real-time visual Command Center (Cockpit):
$sentinel cockpit

🧪 Live Tenant Sandbox: Test Governance Right Now

Execute simulated Amazon Bedrock queries through your tenant's zero-knowledge cryptographic pipeline before writing any code.

In-Browser Simulator
Target: anthropic.claude-3-5-sonnet · Enclave: PCR0 Verified
Policy Gate Decision
PASS
Enclave Intercept Latency
0.48 ms
Prompt Injection Risk
0.02 (Safe)
Client-Side Salted Hash (Zero-Knowledge: Prompt never sent raw)
0x... ✓ SHA-256 HMAC Salted
Protected Model Output
✓ IMMUTABLE CRYPTOGRAPHIC MERKLE RECEIPT 2026-09-10T10:42:01Z
Leaf Hash:  0x...
Merkle Root: 0x7f4c8a2b91... · Attestation: AWS Nitro PCR0 Sealed

Zero-overhead Amazon Bedrock drop-in wrapper. If you ran sentinel init, credentials load automatically:

from oais_sentinel import SentinelBedrockClient

# Automatically loads ~/.sentinel/config.json initialized via token
bedrock = SentinelBedrockClient()

# Or pass your activation token explicitly:
# bedrock = SentinelBedrockClient(activation_token="oais_act_...")

# Transparent zero-knowledge governance (<1ms latency overhead)
response = bedrock.invoke_model(
    modelId="anthropic.claude-3-5-sonnet-20241022-v2:0",
    body={"prompt": "Assess corporate risk exposure under Basel III..."}
)

# Access your cryptographic proof receipt directly
receipt = response["sentinel_receipt"]
print(f"Decision: {receipt['gate_decision']}, Input Hash: {receipt['input_hash']}")

Manage, audit, and inspect your sovereign cryptographic ledger directly from your terminal:

# Launch the local visual CISO / Engineering Command Center (Streamlit)
sentinel cockpit

# Run a mathematically pure, offline cryptographic audit of all Merkle roots
sentinel verify

# Generate an official SOC 2 Type II / EU AI Act Attestation Certificate
sentinel cert --output SOC2_Sentinel_Attestation.json

# Check high-water Merkle roots and buffer status
sentinel status
Tenant Workspace ID
tenant_us_east_...
Sentinel Live API Key
sk_sentinel_live_...
Zero-Knowledge Client HMAC Key
hmac_sec_...
Request Dedicated Enterprise Onboarding →
Copied to clipboard!