Compliance & Safety Rulesets
Standardized, regulation-as-code models mapped to legal frameworks. Run them locally via our SDK or route through our low-latency edge proxy.
FTC Budget Cap
BLOCKEDEnforce programmatic spending caps on transaction requests before tool execution. Intercepts payment inputs to prevent run-away AI loops from exhausting credit lines.
{
"action": "purchase_credits",
"amount": 1250,
"currency": "USD"
}{"maxAmount":1000}Sanctions Keyword Screening
BLOCKEDCross-checks transactional payloads and counterparty details against active OFAC/FinCEN keywords and SDN lists to block illegal or sanctioned activity.
{
"action": "wire_transfer",
"recipient": "sanctioned-co-trading-llc",
"amount": 5000
}{"keywords":["sanctioned-co","ofac-test-entity"]}Banned Action Guard
BLOCKEDBlacklists destructive actions or risky capability invocations (like database drops or unauthorized key exports) requested by autonomous agents.
{
"action": "delete_all",
"table": "users"
}{"actions":["delete_all","export_secrets"]}HIPAA PHI Redactor
CLEAN & REDACTEDScrubs protected health information (MRN, patient name, diagnosis codes) locally before routing payload logs or LLM requests.
{
"patient_name": "John Doe",
"mrn": "MRN-998822",
"symptoms": "cough and fever"
}{"redactPhi":true,"redactPii":true}Destination Domain Allowlist
BLOCKEDPrevents data exfiltration by locking agent webhook callouts and tool requests to a verified registry of domains.
{
"action": "post_data",
"url": "https://malicious-exfil-server.ru/leak"
}{"allowedDomains":["api.stripe.com","api.github.com"]}Required Field Validator
BLOCKEDGuarantees crucial transaction parameters (such as approval tokens or workspace IDs) are included before invoking privileged tools.
{
"action": "create_deployment",
"version": "v1.4"
}{"requiredFields":["workspaceId","approverEmail"]}